jQueryでこれにかなり慣れていません。キャプション付きの jQuery スライド ボックスをアニメーション化するプラグインを使用しています。
<script type="text/javascript">
$(document).ready(function(){
$('.boxgrid.caption').hover(function(){
$(".cover", this).stop().animate({top:'130px'},{queue:false,duration:160});
}, function() {
$(".cover", this).stop().animate({top:'190px'},{queue:false,duration:160});
});
});
</script>
問題は、各 div コンテナーの上部にあるキャプション位置をページ読み込みするときです。しかし、「ページロード」の名前を表示するだけのキャプションが下部に必要です。 http://www.missbee.se/myPerformance3/
プラグインのページはこちら http://webdesignandsuch.com/posts/sliding-doors/