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

JS实现透明度渐变动画

时间:2017-05-15 16:57:16      阅读:279      评论:0      收藏:0      [点我收藏+]

标签:timer   div   color   透明   多次   javascrip   text   change   运算   

<!doctype html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>JS实现透明度渐变动画</title>
  <style type="text/css">
  *{margin:0;padding:0;}
  #box{width:200px;height:200px;background-color:red;filter:alpha(opacity=30);opacity:0.3;}
  </style>
  <script type="text/javascript">
    window.onload = function(){
      var box = document.getElementById(box);
      box.onmouseover = function(){
        changeopa(100);
      }
      box.onmouseout = function(){
        changeopa(30);
    }
  }

    var timer;
    var opa=30;
    
    function changeopa(aim){
      var box = document.getElementById(box);
      clearInterval(timer);
      timer=setInterval(function(){
        if(opa==aim){
          clearInterval(timer);
        }else{
          opa+=(aim-65)/3.5;
          box.style.opacity=opa/100;
          box.style.filter=alpha(opacity=+opa+);
          console.log(opa);
        }
      },30)
    }

  </script>
</head>
<body>
  <div id="box"></div>
</body>
</html>

遇到的问题及注意事项:

1、浮点运算进行多次后会出现误差,尽量使用整数运算。

JS实现透明度渐变动画

标签:timer   div   color   透明   多次   javascrip   text   change   运算   

原文地址:http://www.cnblogs.com/oliverliu/p/6857111.html

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