$w(“#myElement”).show(“FadeIn”)
Can I adjust the animation speed?
The initialized speed is too slow.
$w(“#myElement”).show(“FadeIn”)
Can I adjust the animation speed?
The initialized speed is too slow.
Hi,
At the moment it is not possible. We are considering how to introduce the animation controls.
What parameters are you interested in having here?
All I need now is just speed.
Later, I hope things that were in the basic tools. (speed, direction…)
How can I do animations such as snowfalling ?
Has it been implimented yet ??
Has it been implimented yet ?? It’s 2021
You have -->options, where you can set up the duration-time. The smaler the duration → the faster the animation.
Sorry but where can I find ‘option’ ?
$w . onReady ( function () {
let fadeOptions = {
“duration” : 100 ,
“delay” : 0
};
}
);
export function text3_mouseIn ( event ) {
$w ( “#box1” ). show ( ‘SlideIn’ , fadeOptions );
}
What am i doing wrong
let fadeOptions = {
“duration” : 2000
};
let fadeOptions2 = {
“duration” : 1400
};
$w . onReady ( function () {
$w ( "#image1" ). hide ( "fade" , fadeOptions )
$w ( "#columnStrip19" ). hide ( "fade" , fadeOptions2 );
});