setTimeout(function () {var marginLeftValue = parseInt( ball.style.marginLeft, 10 );
if ( marginLeftValue === distance ){
cb && cb();return;
}else { if ( marginLeftValue < distance ){marginLeftValue++;}else {marginLeftValue--;} } ball.style.marginLeft = marginLeftValue + "px";
if ( marginLeftValue === distance ){
cb && cb();return;
}else { if ( marginLeftValue < distance ){marginLeftValue++;}else {marginLeftValue--;} } ball.style.marginLeft = marginLeftValue + "px";
2016-09-26
setTimeout(function () {var marginLeftValue = parseInt( ball.style.marginLeft, 10 );if ( marginLeftValue === distance ){ cb && cb();return;}else { if ( marginLeftValue < distance ){marginLeftValue++;}else {marginLeftValue--;} } ball.style.marginLeft = marginLeftValue + "px";
2016-09-26
最新回答 / Wilfredo3827904
用style获取css样式,只能获取到写到标签内的样式。参考网址:http://www.cnblogs.com/liulin0524/p/5315908.html
2016-09-26
if (marginLeft === distance) {
cb && cb();
return;
}
我的哥,我照老师的代码跑(当然通过看属性添加了+'px'),只有第一个球是正常跑的,第二三个就瞬间移到了右边,我也不知道为什么.我猜是定时器没结束 ,导致的混乱.我加了个return效果就出来的.
cb && cb();
return;
}
我的哥,我照老师的代码跑(当然通过看属性添加了+'px'),只有第一个球是正常跑的,第二三个就瞬间移到了右边,我也不知道为什么.我猜是定时器没结束 ,导致的混乱.我加了个return效果就出来的.
2016-09-23
只要质量不掺水,
收费课程个人还是可以接受的,
毕竟也不贵,
然而什么东西一沾上钱,
性质就变了,
希望慕课网能越办越好,
勿忘初衷吧!
收费课程个人还是可以接受的,
毕竟也不贵,
然而什么东西一沾上钱,
性质就变了,
希望慕课网能越办越好,
勿忘初衷吧!
2016-09-21
var marginLeft = parseInt(ball.style.marginLeft, 10)这句话一直报错
2016-09-21