我不知道为什么网站顶部的浏览器没有隐藏向上滚动图标。有人可以告诉我更多吗?
<script>
jQuery(function($)
{
$.scrollTo(0);
$('.tothetop').click(function() {$.scrollTo($('body'), 1000); });
}
);
$(window).scroll(function()
{
if($(this).scrollTop()>300) $('.tothetop').fadeIn().top;
else $('.tothetop').fadeOut();
}
);
</script>
.tothetop类是标记的目标。
答案 0 :(得分:0)
按照您给出的代码,似乎您需要向调用函数 scrollTo()添加对象,该函数具有x轴和y轴两个参数
window.scrollTo(0,0);
$('.tothetop').click(function() {$.scrollTo($('body'), 1000); });
$(window).scroll(function()
{
if($(this).scrollTop()>1000) $('.tothetop').fadeIn().top;
else $('.tothetop').fadeOut();
}
);
请尝试使用上面的代码来满足您提到的要求。 希望对您有所帮助。