Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我试图让一个链接非常缓慢地滚动到同一页面上的某个坐标(不是元素)。我试图查看 Jquery 站点,但似乎插件站点已关闭。
任何人都可以提供嵌入在 html 示例源代码中的链接,因为我对 jquery 不太了解。
这是插件的链接
嗨,您不需要插件。它可能会为您节省一些开销...请试试这个,我希望它可以解决您的问题
假设您有以下链接
<a id="button" href="#">click me</a>
添加以下代码
$(document).ready(function(){ $('a#button').bind('click', function(event){ $('html,body').animate({ scrollTop: '100' }); event.preventDefault(); }); });