gpt4 book ai didi

jquery - 如何使用 jQuery scrollTop 和向下滚动

转载 作者:太空宇宙 更新时间:2023-11-03 18:07:11 35 4
gpt4 key购买 nike

我如何在 jQuery 中使用 scrollTop 并向下滚动?

 <div class="wrapper">
<div class="content">

<div class="items">
texttext
</div>
<div class="prev button">prev</div>
<div class="next button">next</div>
</div>
</div>

我创建了: enter image description here

我想使用scrollTop:

enter image description here

我要向下滚动:

enter image description here

还有更多滚动:

enter image description here

参见 JSFiddle:http://jsfiddle.net/kisspa/XEMBZ/

最佳答案

<script>
$(document).ready(function() {
$(window).scroll(function() {
if ($(this).scrollTop() > 200) {
$('#scrolltotop').fadeIn(200);
} else {
$('#scrolltotop').fadeOut(200);
}
});

// Animate the scroll to top
$('#scrolltotop').click(function(event) {
event.preventDefault();
$('html, body').animate({scrollTop: 0}, 600);
})
});
</script>
<a href="javascript:void(0)" id="scrolltotop">scroll top</a>

关于jquery - 如何使用 jQuery scrollTop 和向下滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24447376/

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