滚动顶jQuery

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了滚动顶jQuery相关的知识,希望对你有一定的参考价值。

  1. $(document).ready(function(){
  2. $(".scroll").click(function(event){
  3. //prevent the default action for the click event
  4. event.preventDefault();
  5.  
  6. //get the full url - like mysitecom/index.htm#home
  7. var full_url = this.href;
  8.  
  9. //split the url by # and get the anchor target name - home in mysitecom/index.htm#home
  10. var parts = full_url.split("#");
  11. var trgt = parts[1];
  12.  
  13. //get the top offset of the target anchor
  14. var target_offset = $("#"+trgt).offset();
  15. var target_top = target_offset.top;
  16.  
  17. //goto that anchor by setting the body scroll top to anchor top
  18. $('html, body').animate({scrollTop:target_top}, 500);
  19. });
  20. });

以上是关于滚动顶jQuery的主要内容,如果未能解决你的问题,请参考以下文章

div随页面滚动遇顶固定的两种方法(js&jQuery)

js获取浏览器滚动条距离顶端的距离

第十九节 jQuery使用滚动距离和事件制作置顶菜单

jquery 滚动条位置的

JQuery监听页面滚动事件及scrollTop(),offset().top总结

ios滚动 fix布局顶栏消逝