自己写了一遍完美框架,发现很多重要的小细节(主要还是变量声明的位置问题,即什么时候声明)。然后,看了楼下 @赫克托耳 同学的评论,说一下关于他提出的问题3:无法执行回调函数的解决方法
1、我先用控制台在每次for-in循环的结尾输出了flag的值。发现,flag变为false后,没有使其变成true的触发语句啊(不知道老师为什么能执行,疑问)
2、也想过 @赫克托耳 同学提到的 if(json[attr] != curStyle){flag= false;}else{flag=true;} 这种。但这种肯定不对
3、于是想到在每次时间间隔开始置flag为true,字数不够了,具体的问题中发源码
1、我先用控制台在每次for-in循环的结尾输出了flag的值。发现,flag变为false后,没有使其变成true的触发语句啊(不知道老师为什么能执行,疑问)
2、也想过 @赫克托耳 同学提到的 if(json[attr] != curStyle){flag= false;}else{flag=true;} 这种。但这种肯定不对
3、于是想到在每次时间间隔开始置flag为true,字数不够了,具体的问题中发源码
2015-10-20
$(function(){
$('#move a').mouseenter(function(event) {
$(this).find('i').animate({top:"-25px",opacity:"0"},300,function(){
$(this).css({top:"30px"});
$(this).animate({top:"20px",opacity:1},200);
});
});
})
$('#move a').mouseenter(function(event) {
$(this).find('i').animate({top:"-25px",opacity:"0"},300,function(){
$(this).css({top:"30px"});
$(this).animate({top:"20px",opacity:1},200);
});
});
})
2015-10-19