+ Reply to Thread
Results 1 to 2 of 2

Thread: Delay on index page and then redirect
      
   

  1. #1
    RPW
    RPW is offline Staff Sergeant
    Join Date
    Jan 2006
    Location
    Dublin, Ireland
    Posts
    49

    Default Delay on index page and then redirect

    I know I have seen this somewhere but cant find it in the history of previous questions and tips.

    What I want to do is have my index page with a logo on it so when someone logs onto the website they get the logo

    Then after a delay of a second or two another page (say we call this index 2) loads up by fading in

    Thanks

  2. #2
    Join Date
    Feb 2006
    Location
    Earth
    Posts
    8,719

    Default Re: Delay on index page and then redirect

    Hi, cut & paste the code into a html box on your BV page & preview.
    The fading in of the next page a done on that page via efects in page properties.
    You can ajust the time delay via the 5000 (5secs) in this part of the script.

    Good luck.

    HTML Code:
    <html>
    <title>CodeAve.com(javascript: Timed Redirect on Page Load)</title>
    <body onload=setTimeout("location.href='http://www.collectors-info.com'",5000) bgcolor="#FFFFFF">
    This page contains an onload command that will redirect the browser
    <br>
    to Yahoo! 5 seconds after the page has loaded
    <br>
    If your browser does not continue on to Collectors-info.com!<br>
    Click <a href="http://www.collectors-info.com">here</a>
    </body>
    </html>
     

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49