因此,我使用 jQuery 制作了一个 div,您单击该 div,它会将您带到页面顶部,但是当您想要向下滚动时,它会一直将您带到顶部。有谁知道如何解决这个问题?
这是我的代码:
HTML:
<div id="div"></div>
CSS:
#div
{
background: url(slike/vrh.png) no-repeat;
width: 45px;
height: 45px;
position: fixed;
top: 93%;
right: 1%;
display: none;
cursor: pointer;
}
jQuery :
$(window).scroll(function() {
if($(window).scrollTop() > 0) {
$("#naVrh").show();
$("#naVrh").click(function()
{
$("html, body").animate({scrollTop:0})
});
}
else
$("#naVrh").hide();
});