how to make text suddenly appear?

by Jarrod
5 replies
I've seen a lot of video from various gurus where they'll have a sales video, and then at a certain point in the video text (such as buy button) will magically appear.

How do you do this? Is there a wordpress plugin, some script, or what?
#make #suddenly #text
  • Profile picture of the author CDarklock
    It's usually a simple timer. They have JavaScript on the page which reveals the proper page elements after a certain amount of time. After that amount of time, the elements appear on the page whether you've been watching the video or not.

    You can often pause the video and just leave the page sit there for a half hour, then come back to find the offer details written down instead of on video.

    Another thing that often works is to just close the tab. The exit-pop generally leads to a printed sales page instead of another video. And often a discount, too.
    Signature
    "The Golden Town is the Golden Town no longer. They have sold their pillars for brass and their temples for money, they have made coins out of their golden doors. It is become a dark town full of trouble, there is no ease in its streets, beauty has left it and the old songs are gone." - Lord Dunsany, The Messengers
    {{ DiscussionBoard.errors[7828275].message }}
  • Profile picture of the author Jarrod
    Yeah, I knew all that, but didn't know the code or how to set it up.

    After another hour of googling, found what I needed.

    <html>

    <head>
    <script>
    window.onload = function(){
    // Change this value to however many seconds you want to delay the text by.
    var theDelay = 5;
    var timer = setTimeout("showText()",theDelay*1000)
    }
    function showText(){
    document.getElementById("delayedText").style.visib ility = "visible";
    }
    </script>
    </head>
    <body>
    <div id="delayedText" style="visibility:hidden">
    This is some delayed text
    </div>
    </body>
    </html>
    {{ DiscussionBoard.errors[7828462].message }}
  • Profile picture of the author John Romaine
    This might be of interest to you.

    LeadPlayer
    Signature

    BS free SEO services, training and advice - SEO Point

    {{ DiscussionBoard.errors[7828550].message }}
    • Profile picture of the author serryjw
      Originally Posted by John Romaine View Post

      This might be of interest to you.

      LeadPlayer
      Expensive but fabulous. Do you know if it will work on any website or just WP?
      {{ DiscussionBoard.errors[7828642].message }}
  • Profile picture of the author Evocess
    Uhm, that is pretty obvious for marketing.
    Well you can use pop domination for that one or you can ask some developer to write a script for your site like Jedi have above.
    {{ DiscussionBoard.errors[7828698].message }}

Trending Topics