码迷,mamicode.com
首页 > 编程语言 > 详细

练习:javascript淡入淡出半透明效果

时间:2019-01-04 21:35:41      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:jpg   bsp   anim   支持   透明度   clear   null   lte   interval   

划过无透明

技术分享图片

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>淡入淡出半透明效果</title>
    <style>
        img {width:400px;height:200px;opacity: 0.3;filter:alpha(opacity=30)}
    </style>
</head>
<body>
<img src="images/4.jpg" alt="" id="img">
<script>
    // opacity IE8及以下版本不支持
    var oImg= document.getElementById(img);
    oImg.onmouseover=function(){
        animate(30,100)
    }
    oImg.onmouseout=function(){
        animate(100,30)
    }
    var timer = null;
    function animate(speed,dest){
       //speed初始透明度,dest透明度目标值
        clearInterval(timer);
        timer = setInterval(function(){
            speed<dest?speed+=10:speed-=10;
            if(speed==dest){
                clearInterval(timer);
                timer=null;
            }else {
                oImg.style.opacity=speed/100;
                oImg.style.filter="alpha(opacity:"+speed+")";
            }
        },20)
    }
</script>
</body>
</html>

 

练习:javascript淡入淡出半透明效果

标签:jpg   bsp   anim   支持   透明度   clear   null   lte   interval   

原文地址:https://www.cnblogs.com/liubingyjui/p/10222175.html

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