タグをアニメーション化しようとしていますが、探している効果を得るためのa
css プロパティがあります。table-cell
誰かが jQuery を使用してクリックしたときにアニメーション化しようとしていますが、機能していませtable-cell
んtable-cell
。これが私が取り組んでいるページです。
ここにフィドルがあります:http://jsfiddle.net/nEryb/
.clip{
background-color: #373938;
min-height: 100%;
height: 100%;
width: 300px;
background-position: center center;
background-size: auto 100%;
background-repeat: no-repeat;
display: table-cell;
box-shadow: -2px 0 5px rgba(0,0,0,.2), -2px -2px 5px rgba(0,0,0,.2), -2px 2px 5px rgba(0,0,0,.2);
text-align: center;
filter: grayscale(100%);
filter: url(/media/images/new/filters.svg#grayscale);
filter: gray;
-webkit-filter: grayscale(1);
position: relative;
}
ここにjqueryがあります:
$(document).on("click", "a.clip", function(e){
e.preventDefault();
window.history.pushState("Gallery", "Gallery", $(this).attr("href"));
$("a.clip.hover").animate({
height: "20px"
}, "fast");
});
これを機能させるにはどうすればよいですか?