1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
delayedcall(delay, actions) delayedcall(id, delay, actions) 延迟执行某个动作,并设置延迟的时间. 领主提醒:delayedcall在动作循环、元素动画控制等效果经常使用,可以当时钟timer功能使用。 参数: •id (可选) ◦设置延迟动作的唯一ID号. ◦该ID参数主要作用用于执行stopdelayedcall(id),这样就可以指定停止某个延迟动作. •delay ◦延迟的时间. •actions ◦ 延迟的时间后执行的动作. 样例: delayedcall(5.0, hidelogo() ); delayedcall(10, looktohotspot(spot1);loadpano(victu360.xml); ); delayedcall(1, showtext('hello'); ); delayedcall(4, showtext('to the pano'); ); <action name="updatemousepos"> copy(layer[cursor].x, mouse.x); copy(layer[cursor].y, mouse.y); delayedcall(0.02, updatemousepos() ); </action> |