javascript对联广告 兼容 IE FF
// JavaScript Document lastScrollY=0; function heartBeat(){ var diffY; if (document.documentElement document.documentElement.scrollTop) diffY = document.documentElement.scrollTop; else if (document.body) diffY = document.body.scrollTop els
// JavaScript Document
lastScrollY=0;
function heartBeat(){
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("lovexin12").style.top=parseInt(document.getElementById("lovexin12").style.top)+percent+"px";
document.getElementById("lovexin14").style.top=parseInt(document.getElementById("lovexin12").style.top)+percent+"px";
lastScrollY=lastScrollY+percent;
}
suspendcode12="
suspendcode14="
"document.write(suspendcode12);
document.write(suspendcode14);
window.setInterval("heartBeat()",1);
下一篇: php-app开发接口加密使用步骤详解
推荐阅读
-
JAVASCRIPT IE 与 FF 中兼容写法记录
-
Jquery 复选框取值兼容FF和IE8(测试有效)
-
javascript实现的图片预览和上传功能示例【兼容IE 9】
-
浏览器兼容解决FF/IE6/IE7背景专用CSS HACK
-
使用JavaScript / JQuery导出 html table 数据至 Excel 兼容IE/Chrome/Firefox
-
不用js多浏览器兼容纯DIV/CSS对联漂浮广告代码
-
javascript图片预览和上传(兼容IE)
-
javascript四个方向无间隙滚动合集(多浏览器IE,firefox兼容)
-
写jQuery-ajax插件,XMLHttpRequest,支持回调,兼容ie、ff、360等浏览器
-
CSS hack实现 CSS完美兼容IE6/IE7/FF的通用方法