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

效果跟老师做的不一样,请大神指出错误

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="Content-type" content="text/html">
<title>动画框架养成记</title>
<style>
*{
padding:0;
margin:0;
}
#frame{
width:400px;
height:200px;
margin:100px auto;
border:1px solid #888;
background: #efefef;
}
#fg{
width:300px;
margin:0px auto;
/*background: #efefef;*/
}
#fg:after{
content:'';
display: table;
clear:both;
}
#fg figure{
float:left;
width:60px;
height: 80px;
font-size: 14px;
background: #ffffff;
margin-right:15px;
margin-bottom: 15px;
padding-left:12px;
border:1px solid #ffffff;
box-sizing:border-box;
position: relative;
overflow: hidden;
}
#fg figure i{
position: absolute;
top:10px;
display:block;
/*border:1px solid ;*/
}
#fg figure figcaption{
/*border:1px solid;*/
position: absolute;
bottom:10px;
left:0;
right:0;
text-align: center
}
#fg figure figcaption a{
text-decoration: none;
color:#444444;
}
#fg figure figcaption a:hover{
color:rgba(255,0,0,0.6);
}
</style>
<script type="text/javascript">
window.onload=function(){
var odiv=document.getElementById('fg');
var fignum=odiv.getElementsByTagName('figure');
var timer=null;
for(var i=0;i<fignum.length;i++){
fignum[i].onmouseover=function(){
var figimg=this.getElementsByTagName('i')[0];
moreover(figimg,{top:-40,opacity:0},function(){
figimg.style.top=20+'px'
moreover(figimg,{top:10,opacity:1000});
});
}
}
function moreover(obj,json,fn){
clearInterval(obj.timer);
var flag=true;//标杆,判断是否所有运动都完成
obj.timer=setInterval(function(){
for(var attr in json){
var cur=0;
if(attr=='opacity'){
cur=Math.round(parseInt(getstyle(obj,attr))*100);
// alert(cur)
}else{
cur=Math.round(parseInt(getstyle(obj,attr)));
}
var speed=(json[attr]-cur)/8;
speed=speed>0?Math.ceil(speed):Math.floor(speed);
if(json[attr]!=cur){
flag=false;
}
if(attr=='opacity'){
obj.style.filter='alpha(opacity:'+(cur+speed)+')';
obj.style.opacity=(cur+speed)/100;
}else{
obj.style[attr]=cur+speed+"px";
}
}
if(flag){
clearInterval(obj.timer);
if(fn){
fn()
}
}
},20);


}
function getstyle(obj,attr){//获取syle值
if(obj.currentStyle){
return obj.currentStyle[attr];
}else{
return getComputedStyle(obj,false)[attr];
}
}

}
</script>
</head>
<body>
<div id="frame">
<div id="fg">
<figure>
<i><img src="image/airplane.png" alt=""></i>
<figcaption><a href="">图片1</a></figcaption>
</figure>
<figure>
<i><img src="image/briefcase.png" alt=""></i>
<figcaption><a href="">图片2</a></figcaption>
</figure>
<figure>
<i><img src="image/headphones.png" alt=""></i>
<figcaption><a href="">图片3</a></figcaption>
</figure>
<figure>
<i><img src="image/home.png" alt=""></i>
<figcaption><a href="">图片4</a></figcaption>
</figure>
<figure>
<i><img src="image/office.png" alt=""></i>
<figcaption><a href="">图片5</a></figcaption>
</figure>
<figure>
<i><img src="image/newspaper.png" alt=""></i>
<figcaption><a href="">图片6</a></figcaption>
</figure>
<figure>
<i><img src="image/pencil.png" alt=""></i>
<figcaption><a href="">图片7</a></figcaption>
</figure>
<figure>
<i><img src="image/home3.png" alt=""></i>
<figcaption><a href="">图片8</a></figcaption>
</figure>
</div>
</div>
</body>
</html>


正在回答

5 回答

把var flag=true;  放到下面我给放那个位置

for(var attr in json){

var cur=0;

var flag=true;   // 放到这里

if(attr=='opacity'){

cur=Math.round(parseInt(getstyle(obj,attr))*100);

// alert(cur)

}else{

cur=Math.round(parseInt(getstyle(obj,attr)));

}


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

恒者远 提问者

非常感谢!
2015-12-12 回复 有任何疑惑可以回复我~
#2

蛋疼少年的和谐青春

你好,就是我也出现了问题,就是能解释一下为什么将那个 true放在下main就可以了呢?
2016-01-09 回复 有任何疑惑可以回复我~

改完之后,透明度回不到1了,有没有大神能给我解释一下啊啊。

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

如果放到外面就一直为真了啊

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

jetbbb

我的放在那里都不能调用回调函数啊怎么回事,一直为真的话应该能调用吧
2016-01-13 回复 有任何疑惑可以回复我~

把那个  flag 标志 放到function函数里面  你试下 看看

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

恒者远 提问者

谢谢,你说得对,
2015-12-12 回复 有任何疑惑可以回复我~
#2

666图

能问一下,为什么把flag 标志 放到function函数里面就行了?我之前也是这个问题。还是不明白为什么
2015-12-27 回复 有任何疑惑可以回复我~

你的运行时是什么问题

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

恒者远 提问者

鼠标移入有消失的第一个动画,没有第二个动画,等移开鼠标的时候出现向上出现的动画(第二个动画)。
2015-12-12 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

效果跟老师做的不一样,请大神指出错误

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