码迷,mamicode.com
首页 > Web开发 > 详细

js操作元素透明度以及浏览器兼容性

时间:2017-12-16 23:13:52      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:width   UI   move   timer   red   get   idt   color   else   

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>透明度</title>
<meta name="description" content="">
<meta name="keywords" content="">
<link href="" rel="stylesheet">
<style>
    #div1{width:200px;height:200px;background: red;filter:alpha(opacity:30);opacity: 0.3;}
</style>
<script>
    window.onload=function(){
        var oDiv=document.getElementById(div1);
        oDiv.onmouseover=function(){
            movestar(100);
        }
        oDiv.onmouseout=function(){
            movestar(30);
        }
    }
    var timer=null;
    var alpha=30;
    function movestar(iTarget){
            var oDiv=document.getElementById(div1);
            clearInterval(timer);
            timer=setInterval(function(){
                var speed=0;
                if(alpha<iTarget){
                    speed=10;
                }else{
                    speed=-10;
                }
                if(alpha==iTarget){
                   clearInterval(timer); 
               }else{
                alpha+=speed;
                oDiv.style.filter=alpha(opacity:+alpha+);
                oDiv.style.opacity=alpha/100;
               }
            },30)
        }
</script>
</head>
<body>
    <div id="div1"></div>
</body>
</html>

 

js操作元素透明度以及浏览器兼容性

标签:width   UI   move   timer   red   get   idt   color   else   

原文地址:http://www.cnblogs.com/itsmart/p/8047778.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!