gpt4 book ai didi

javascript - 为什么平滑滚动有效但只是有时有效?

转载 作者:行者123 更新时间:2023-11-30 10:57:04 27 4
gpt4 key购买 nike

我正在使用来自 w3school https://www.w3schools.com/howto/howto_css_smooth_scroll.asp 的 js 代码

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
// Add smooth scrolling to all links
$("a").on('click', function(event) {

// Make sure this.hash has a value before overriding default behavior
if (this.hash !== "") {
// Prevent default anchor click behavior
event.preventDefault();

// Store hash
var hash = this.hash;

// Using jQuery's animate() method to add smooth page scroll
// The optional number (800) specifies the number of milliseconds it takes to scroll to the specified area
$('html, body').animate({
scrollTop: $(hash).offset().top
}, 800, function(){

// Add hash (#) to URL when done scrolling (default click behavior)
window.location.hash = hash;
});
} // End if
});
});
</script>

但令我惊讶的是,我发现平滑滚动在 10 次中有 6 次有效。我清除了浏览器的缓存,但问题仍然存在。为什么会这样?谁能帮帮我?

最佳答案

关于javascript - 为什么平滑滚动有效但只是有时有效?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59561396/

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