网站右侧悬浮图片JS广告代码 随滚动轴移动
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | <script> lastScrollY=0; function heartBeat(neryid){var diffY; if (document.documentElement && document.documentElement.scrollTop) diffY = document.documentElement.scrollTop; else if (document.body) diffY = document.body.scrollTop else {/*Netscape stuff*/} percent=.1*(diffY-lastScrollY); if(percent>0)percent=Math.ceil(percent); else percent=Math.floor(percent); document.getElementById(neryid).style.top=parseInt(document.getElementById(neryid).style.top)+percent+"px"; lastScrollY=lastScrollY+percent; } function hidethis(neryid){ document.getElementById(neryid).style.visibility="hidden"; } window.setInterval("heartBeat('goods')",1); </script> <div id="goods" style="position:absolute;right: 10px; margin-top: 100px;top: 200px;z-index:999;"> <a href="http://www.sujianbao.com/" target="_blank"><img src="http://www.sujianbao.com/example.png"></a> </div> |