《两边条幅浮动窗口代码.doc》由会员分享,可在线阅读,更多相关《两边条幅浮动窗口代码.doc(4页珍藏版)》请在金锄头文库上搜索。
1、浮动对联广告代码(asp) (2008-12-17 20:27:25) lastScrollY=0;function heartBeat()diffY=document.body.scrollTop;percent=.1*(diffY-lastScrollY);if(percent0)percent=Math.ceil(percent);else percent=Math.floor(percent);document.all.lovexin12.style.pixelTop+=percent;document.all.lovexin14.style.pixelTop+=percent;las
2、tScrollY=lastScrollY+percent;suspendcode12=document.write(suspendcode12);suspendcode14=document.write(suspendcode14);window.setInterval(heartBeat(),1);使用方法:方法一.直接把以上代码插入到网页合适位置,修改以上汉字提示信息(效果如本页面实例展示,本页面显示的图片大小是100*250象素).方法二.1、用记事本保存以上源代码,建立后缀名为.js的文件,比如ad.js2.在需要显示浮动广告的网页中加入 表示调用该ad.js文件。注意事项:1.新建立
3、的显示浮动广告的网页,需要删除代码第一行的标签,如果不删除,只会显示广告图片,但该图片不会随着滚动条上下滚动。你可以先不删除,测试效果;然后删除,再看效果,应该有所不同。2.如果需要单侧显示广告,比如只显示左侧,那么删除右侧显示代码就可以,即删除suspendcode14=document.write(suspendcode14);这段代码,或者删除这几行。另一法lastScrollY=0;function heartBeat()diffY=document.body.scrollTop;percent=.1*(diffY-lastScrollY);if(percent0)percent=Ma
4、th.ceil(percent);else percent=Math.floor(percent);document.all.lovexin12.style.pixelTop+=percent;document.all.lovexin14.style.pixelTop+=percent;lastScrollY=lastScrollY+percent;suspendcode12=document.write(suspendcode12);suspendcode14=document.write(suspendcode14);window.setInterval(heartBeat(),1);以下
5、可用!网页漂浮广告代码 var x = 50,y = 60 var xin = true, yin = true var step = 1 var delay = 10 var obj=document.getElementById(www_qpsh_com) function floatwww_qpsh_com() var L=T=0/by var R= document.body.clientWidth-obj.offsetWidth var B = document.body.clientHeight-obj.offsetHeight obj.style.left = x + docum
6、ent.body.scrollLeft obj.style.top = y + document.body.scrollTop x = x + step*(xin?1:-1) if (x R) xin = false; x = R y = y + step*(yin?1:-1) if (y B) yin = false; y = B var itl= setInterval(floatwww_qpsh_com(), delay) obj.onmouseover=function()clearInterval(itl) obj.onmouseout=function()itl=setInterval(floatwww_qpsh_com(), delay)