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

Posted IT文艺女

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js操作元素透明度以及浏览器兼容性相关的知识,希望对你有一定的参考价值。

<!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操作元素透明度以及浏览器兼容性的主要内容,如果未能解决你的问题,请参考以下文章

原生JS实现动画函数的封装

JS-特效 ~ 05. 缓动框架兼容封装/回掉函数/兼容透明度/层级旋转轮播图正则表达式验证表单注册账号

js学习笔记18----元素创建操作

隐藏元素,保留功能

如何实现背景透明,文字不透明,兼容所有浏览器?

十条jQuery代码片段助力Web开发效率提升