我是一个jQuery新手。我在同一页面上有两个功能:
这些功能可以单独使用,但当我将它们组合起来时,如下图所示,"返回顶部"功能无效。
我想我错过了一些明显的东西并且可以使用一些帮助。 谢谢!
更新:这个小提琴显示了问题:
back to top jsfiddle 如果禁用平滑滚动块,则返回顶部功能。
jQuery(document).ready(function(){
//smooth scrolling
$('a[href^="#"]').on('click',function (e) {
e.preventDefault();
var target = this.hash,
$target = $(target);
$('html, body').stop().animate({
'scrollTop': $target.offset().top -150}, 900, 'swing', function () {
window.location.hash = target;});
});
// Show or hide the back to top footer button
$(window).scroll(function() {
if ($(this).scrollTop() > 200) {
$('.go-top').fadeIn(200);
} else {
$('.go-top').fadeOut(200);
}
});
// Animate the scroll to top
$('.go-top').click(function(event) {
event.preventDefault();
$('html, body').animate({scrollTop: 0}, 900);
});
});
答案 0 :(得分:1)
答案 1 :(得分:0)
直接在html标签中使用这个简单的代码。
<a onclick="$('html, body').animate({scrollTop: 0}, 900);" href="javascript:;">back to top </a>