温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

锚标记平滑移动

发布时间:2020-06-05 02:25:32 来源:网络 阅读:758 作者:canyan3073 栏目:web开发

由于项目中要用到,遂记录下来

用JQuery实现 锚标记平滑移动

  1. <html> 
  2. <head> 
  3. <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 
  4. <title>锚标记平滑移动</title> 
  5.  
  6. </head> 
  7.  
  8. <body> 
  9. <div id="top" > 
  10.     顶部 <a href="#bottom" class="smooth">移动到底部</a> 
  11. </div> 
  12. <div id="appendBox"> 
  13.    <!--填充内容--> 
  14. </div> 
  15. <div id="bottom" > 
  16.     底部  <a href="#top" class="smooth">移动到顶部</a> 
  17. </div> 
  18. <!--替换为自己本地JQuery函数库--> 
  19. <script src="jquery-1.4.2.min.js"type="text/javascript"></script> 
  20. <script type="text/javascript"> 
  21. $(".smooth").click(function(){ 
  22.     var href = $(this).attr("href"); 
  23.     var pos = $(href).offset().top; 
  24.     $("html,body").animate({scrollTop: pos}, 1000);  
  25.     return false; 
  26. }); 
  27. </script> 
  28. </body> 
  29. </html> 

 

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI