gpt4 book ai didi

javascript - 如何向下滚动 - JQuery

转载 作者:行者123 更新时间:2023-12-03 21:44:46 25 4
gpt4 key购买 nike

我不是程序员,但我使用下面的代码将页面滚动到顶部。

如何调整它以向下滚动?

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>

<a class="btnMedio" href="javascript:;">
<img src="http://desmond.imageshack.us/Himg41/scaled.php?server=41&filename=deixeseuemail.png&res=landing"/>
</a>

<script>
$('.btnMedio').click(function(){
$('html, body').animate({scrollTop:1000},'50');
});
</script>

最佳答案

$('.btnMedio').click(function(event) {
// Preventing default action of the event
event.preventDefault();
// Getting the height of the document
var n = $(document).height();
$('html, body').animate({ scrollTop: n }, 50);
// | |
// | --- duration (milliseconds)
// ---- distance from the top
});

关于javascript - 如何向下滚动 - JQuery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12650170/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com