タップで読みたいところにジャンプします
使用したjQuery
- click()
- attr()
- offset()
- animate()
jQuery のコード
$('.float06__show[href^="#"]').click(function () {
// 移動先のコンテンツの位置を取得
var target2 = $($(this).attr('href')).offset().top;
// fixed の高さ
target2 -= 320;
// スクロール
$('html,body').animate({ scrollTop: target2 }, 1000);
});
コメント