How do you Hide Image then Show on Timer?

by 3 replies
5
Hey Warriors,

I'm trying to find a quick jquery or javascript to use for just hiding an image until a certain amount of time, then showing the image.

I'm sure you've seen it on several different launches: You watch the video with nothing on the page, then towards the end of the video, the image pops up with the price and you click it, etc...

I'm looking for that script. Any help would be much appreciated!

Thanks!
#programming #hide #image #show #timer
  • Hello

    I'm a Web Developer from Switzerland. I did a little (free) work for you. Send me your email and I'll give you the source code.

    Can't post the link here because I haven't got 15 posts yet.
    • [ 1 ] Thanks
  • For anyone that is interested, Tomsummer above provided this script... excellent work! Thanks!

    <html>
    <head>
    <script style="text/javascript">
    window.setTimeout("document.getElementById('image1 ').style.visibility='visible';",5000);
    </script>
    </head>
    <body>
    <img src="test.jpg" id="image1" style="visibility:hidden">
    </body>
    </html>
    • [1] reply
    • Hey, I'm a complete HTML noob, could you help me our with specific instructions? Thanks!

Next Topics on Trending Feed