How to Make Text Disappear Upon Animation of Image

Hi Emakeup,

You can use SetTimeOut function to set a timer and a function to be run after that count down. So, lets say 8 seconds for the logo to start appearing, and give it 1 second to be fully shown after
the motion = 9 sec. ( for the motion time, 1 sec is a guessing, give it a try to make it perfect)

so, your code should look something like this:

 setTimeout(function(){ $w("#title").hide() }, 9000); 

Good Luck,
Mustafa