使用方法:
1.载入插件,在页面载入之后,window.onload = function(){}
2.创建需要跟随的对象的数组,比如 var followIds = [document.getElementById("follow"),document.getElementById("follow2")];
3.初始化Follow:new Follow();
4.传参,obj是对象数组,bottom是滚动块距离底部的最小的高度
<br><script type="text/javascript" src="follow.js"></script><br>window.onload = function(){<br> var followIds = [document.getElementById("follow"),document.getElementById("follow2")];<br> new Follow({<br> obj:followIds,<br> bottom:150<br> });<br>}<br>
Copier après la connexion