我有一个问题,我想首先淡化图像的不透明度,然后才将此图像移动到页面的最右侧。但是,Mootools总是同时执行这两个操作而不是按顺序执行。
<script type="text/javascript" src="mootools-core-1.3.2-full-compat.js"></script>
<script type="text/javascript">
window.addEvents({
"load" : function() {
$$('.picture').getLast().setStyle('opacity', 0);
var show = new Fx.Tween($$('.picture').getLast(), {
property: 'opacity',
duration: '2500'
});
show.start(1);
alert($$('.picture').getLast().getStyle('opacity'));
var movePicture = new Fx.Tween($$('.picture').getLast(), {
property : 'margin-left',
duration : '2500'
});
while($$('.picture').getLast().getStyle('opacity')!= 1){}
movePicture.start(700);
},
"domready" : function() {
/* do something */
function wait(msecs){
var strt = new Date().getTime();
var cur = strt
while(cur - strt < msecs){
cur = new Date().getTime();
if((cur-strt)%100==0)
alert(cur-strt);
}
}
}
});
</script>
我想执行show.start(1)然后在完成后执行movePicture.start(700)。
提前致谢!
答案 0 :(得分:2)