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

js运动 淡入淡出

时间:2015-03-09 23:58:58      阅读:383      评论:0      收藏:0      [点我收藏+]

标签:

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
<style>
img{
    margin-left: 200px;
    opacity: 0.3;
    alpha(opacity = 30);
    }
</style>

<script>
    window.onload = function ()
    {
        var oimg = document.getElementById(‘img1‘);
        var timer = null;

        oimg.onmouseover = function ()
        {
            touming(this,100,10)
        }

        oimg.onmouseout = function ()
        {
            touming(this,30,-10);
        }

        function touming(obj,target,speed)
        {
            clearInterval(timer);

            timer = setInterval(function ()
                {
                    var icur = Math.round(css(obj,‘opacity‘)*100);
                    if(icur == target)
                    {
                        clearInterval(timer);
                    }
                    else
                    {
                        obj.style.opacity = (icur + speed)/100;
                        obj.style.filter = ‘alpha(opacity= ‘( + icur + speed ) + ‘)‘;
                    }
                },30);
            
        }

        function css(obj,attr)
        {
            if(obj.currentStyle)
                return obj.currentStyle[attr];
            else
                return getComputedStyle(obj,false)[attr];
        }
    }
</script>
</head>

<body>
<img id="img1" src="img/1.jpg" alt="图片">
</body>
</html>

 

js运动 淡入淡出

标签:

原文地址:http://www.cnblogs.com/mayufo/p/4324782.html

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