jquery 点击元素后,滚动条滚动至该元素位置 - 笔记

来源:互联网 发布:杜兰特伦纳德对决数据 编辑:程序博客网 时间:2024/06/05 00:08



点击元素后,滚动条滚动至该元素位置:

$('a.lead-link').bind('click', function(e) {e.preventDefault();$('html,body').animate({scrollTop: $(this.hash).offset().top - 60}, 1500);});



0 0
原创粉丝点击