大家来找茬
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style>
#div1{
width:200px;
height:200px;
background:#C6F;
border:4px solid #000;
opacity:0.3;
filter=alpha(opacity:30);
}
</style>
<script>
var div1=document.getElementById("div1");
div1.onmouseover=function(){
startMove(this,"opacity",100);
}
div1.onmouseout=function(){
startMove(this,"opacity",30);
}
var alpha=30;
function startMove(obj,attr,iTarget){
clearInterval(obj,timer);
obj.timer=setInterval(function(){
var icur=0;
if(attr=="opacity"){
icur=Math.round(parseFloat(getStyle(obj,attr)))*100;
}
else{
icur=parseInt(getStyle(obj,attr));
}
//var icur=parsetInt(getStyle(obj,attr));
var speed=(iTarget-icur)/8;
speed=speed>0?Math.ceil(speed):Math.floor(speed);
if(icur==iTarget){
clearInterval(obj.timer);
}
else{
if(attr=="opacity"){
obj.style.filter="alpha(opacity:"+(icur+speed)+")";
obj.style.opacity=(icur+speed)/100;
}
else{
obj.style[attr]=icur+speed+"px";
}
}
},30)
}
function getStyle(obj,attr){
if(obj.currentStyle){
return obj.currentStyle[attr];//currentStyle针对IE浏览器
}
else{
return getComputedStyle(obj,false)[attr];//getComputedStyle针对firefox浏览器
}
}
</script>
</head>
<body>
<div id="div1"></div>
</body>
</html>