浏览器兼容代码

来源:2-1 JS速度动画

Aomd

2015-06-09 23:21

window.onload=function(){

var div =document.getElementById('div1');

var cssnew=document.styleSheets[0].cssRules || document.styleSheets[0].rules || window.CSSRule.STYLE_RULE;

var t =null;

function time(speed,target){

clearInterval(t);

t=setInterval(function(){

if(div.offsetLeft==target){

clearInterval(t);

}else{

cssnew[1].style.left=div.offsetLeft+speed+'px';

}

},30)

//cssnew[1].style.width=30+"px";

}

div.onmouseover =function(){

time(10,0)

};

div.onmouseout=function(){

time(-10,-200)

};

}


 ie7 和火狐不会报错 360浏览器回报:Cannot read property 'style' of undefined 请问有什么解决的办法

写回答 关注

1回答

  • 橙橙橙汁
    2015-12-30 11:21:37

    cssnew[1]

JS动画效果

通过本课程JS动画的学习,从简单动画开始,逐步深入各种动画框架封装

113925 学习 · 1443 问题

查看课程

相似问题