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

来源:7-1 JS动画案例

恒者远

2015-12-12 07:37

<!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回答

  • 五月君
    2015-12-12 20:37:29
    已采纳

    把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)));

    }


    蛋疼少年的和...

    你好,就是我也出现了问题,就是能解释一下为什么将那个 true放在下main就可以了呢?

    2016-01-09 13:24:27

    共 2 条回复 >

  • 逃离星球
    2016-04-10 11:47:28

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

  • 五月君
    2015-12-29 11:42:17

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

    jetbbb

    我的放在那里都不能调用回调函数啊怎么回事,一直为真的话应该能调用吧

    2016-01-13 11:51:16

    共 1 条回复 >

  • 五月君
    2015-12-12 20:29:40

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

    666图

    能问一下,为什么把flag 标志 放到function函数里面就行了?我之前也是这个问题。还是不明白为什么

    2015-12-27 10:05:31

    共 2 条回复 >

  • 五月君
    2015-12-12 17:59:08

    你的运行时是什么问题

    恒者远

    鼠标移入有消失的第一个动画,没有第二个动画,等移开鼠标的时候出现向上出现的动画(第二个动画)。

    2015-12-12 18:46:28

    共 1 条回复 >

JS动画效果

通过本课程JS动画的学习,从简单动画开始,逐步深入各种动画框架封装

113925 学习 · 1443 问题

查看课程

相似问题