jQuery网页右侧广告跟随滚动代码分享

网络编程 2021-07-04 21:03www.168986.cn编程入门
这篇文章主要介绍了两种jQuery实现网页右侧广告跟随滚动的方法,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

jQuery广告跟随滚动的两种方法都分享给大家,希望对大家的学习有所启发。

方法一

<script type="text/javascript">// <![CDATA[ 
$.fn.smartFloat = function() { 
 var position = function(element) { 
  var  = element.position()., pos = element.css("position"); 
  $(window).scroll(function() { 
   var scrolls = $(this).scrollTop(); 
   if (scrolls > ) { 
    if (window.XMLHttpRequest) { 
     element.css({ 
      position: "fixed", 
      : "10px" 
     }); 
    } else { 
     element.css({ 
      : scrolls 
     }); 
    } 
   }else { 
    element.css({ 
     position: pos, 
     :  
    }); 
   } 
  }); 
 }; 
 return $(this).each(function() { 
  position($(this)); 
 }); 
}; 
 
//绑定 
$("#float").smartFloat(); 
// ]]></script> 

方法二

/页面智能层浮动/ 
jQuery(document).ready(function($){ 
 var $sidebar = $(".float"), 
 $window = $(window), 
 offset = $sidebar.offset(), 
 Padding = 20; 
 $window.scroll(function() { 
  if ($window.scrollTop() > offset.) { 
   $sidebar.s().animate({ 
    marginTop: $window.scrollTop() - offset. + Padding 
   }); 
  } else { 
   $sidebar.s().animate({ 
    marginTop: 0 
   }); 
  } 
 }); 
}); 
<div id="float" class="float"> 
<h3>博主推荐</h3> 
广告代码 
</div>

以上就是jQuery网页右侧广告跟随滚动,仿wordpress右侧广告跟随滚动,希望对大家的学习有所帮助。

Copyright © 2016-2025 www.168986.cn 狼蚁网络 版权所有 Power by