基本思路:使用样式filter,但是要区分IE浏览器和chrom、firefox的不同,具体也是用定时器来实现。
<!DOCTYPE HTML>
<!--
-->
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>
#div1{
width:200px;
height:200px;
background:red;
filter:alpha(opacity:30);opacity:0.3;
}
</style>
<script>
window.οnlοad=function ()
{
var oDiv=document.getElementById('div1');
oDiv.οnmοuseοver=function ()
{
startMove(100);
};
oDiv.οnmοuseοut=function ()
{
startMove(30);
};
};
var alpha=30;//透明度变量,因为样式那里初始是30
var timer=null;
function startMove(iTarget){
var oDiv=document.getElementById('div1');
clearInterval(timer);
timer=setInterval