そのため、jQuery を使用して 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();
});