ポートフォリオ画像ギャラリーを作成しましたが、キャプションを正しく機能させることができません...使用しています:http ://s3.amazonaws.com/buildinternet/live-tutorials/sliding-boxes/index.htm (I ' m 2番目のものを使用)
唯一の問題は、キャプションのサイズが異なるため、以下のコードを使用しようとしています。
$('.boxgrid.caption').hover(function () {
var $height = $("#description-text", this).height();
$(".cover", this).stop().animate({
top: '375' - $height
}, {
queue: false,
duration: 160
});
}, function () {
$(".cover", this).stop().animate({
top: '365px'
}, {
queue: false,
duration: 160
});
});
しかし、何らかの理由で、の出力コード$height
は395ですが、150またはそれらの線に沿ったどこかにあるはずです...
助けてください...
ありがとうベン