为了账号安全,请及时绑定邮箱和手机立即绑定

鼠标移动显示不出渐变的效果

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8" />

<title>js透明度变化</title>

<link type='text/css' rel='stylesheet' href='css/alpha1.css' />

<style src='js/alpha1.js'></style>

</head>

<body>

<div id='div1'> </div>

</body>

</html>

*{

margin: 0;

padding: 0;

}

#div1{

width:300px;

height:200px;

background: red;

filter:alpha(opacity:30);

opacity:0.3;

}

window.onload = start;

function start(){

console.log(123);

var div1 = document.getElementById('div1');

div1.onmouseover = function(){

//不透明度为100或1.0

console.log(123);

Move(100);

}

div1.onmouseout = function(){

//不透明度恢复到30或0.3

Move(30);

}

}


var timer = null,

    alpha = 30;

function Move(Itarget){

var div1 = 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 = alpha + speed;

    div1.style.filter = 'alpha(opacity:' + alpha + ')';

    //filter:alpha(opacity:30);

    div1.style.opacity = alpha/100;

    }

    },30);

}


正在回答

2 回答

window.onload = start;

这里少了括号,加上括号试试

window.onload = start();

0 回复 有任何疑惑可以回复我~
#1

元气满满来学习 提问者

我找到错误了,<script>标签写成<style>了,在实验室冻傻了,找了半天
2017-04-14 回复 有任何疑惑可以回复我~
#2

元气满满来学习 提问者

那个()你以后别加,是不对的。
2017-04-14 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

鼠标移动显示不出渐变的效果

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信