Results 1 to 8 of 8

Thread: How can i get my website to Refresh every minute?

  1. #1
    100%'s Avatar ╚════╩═╬════╝
    Join Date
    Jan 2003
    Posts
    13,383
    I would like to make a webpage filled with hotlinked dynamic jpegs from livewebcams
    of surf beaches around the world.

    1Is there a simple html script that can automatically refresh the page every minute or two minutes?

    2.how can i get the actual image to display if it is not a jpeg etc file eg.
    http://www.windsofcabarete.com/winds...&security=7c50


    thanx
    Last edited by 100%; 12-08-2004 at 04:15 PM.

  2. Internet, Programming and Graphics   -   #2
    Barbarossa's Avatar mostly harmless
    Join Date
    Jun 2002
    Location
    Over here!
    Posts
    15,180
    1).To reload the document itself:

    <HEAD>
    <META HTTP-EQUIV=REFRESH CONTENT=5>
    </HEAD>

    CONTENT=5 means wait for 5 seconds to reload the page.

    2). Don't understand...

  3. Internet, Programming and Graphics   -   #3
    100%'s Avatar ╚════╩═╬════╝
    Join Date
    Jan 2003
    Posts
    13,383
    Brilliant thanks alot

    basically alot of those surfwebcams use frame by frame jpgs (all have the same name) hence if you reload it itll change

    eg



    - likewise with the swf versions
    however in the case of

    http://www.windsurfing.cz/webcam9/ispy_m2.jpg?570
    or
    http://www.kitewindsurf.com/kitecam/...=1102521529681
    or
    http://www.windsofcabarete.com/winds...&security=fa90

    i dont know how to get the image to display in a web page or is it the same?

  4. Internet, Programming and Graphics   -   #4
    tesco's Avatar woowoo
    Join Date
    Aug 2003
    Location
    Canadia
    Posts
    21,669
    try them and see hwat happens.

  5. Internet, Programming and Graphics   -   #5
    Vargas's Avatar gone fishin'
    Join Date
    Jul 2003
    Location
    the poopdeck
    Posts
    1,878
    something like this:
    Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <HEAD>
    <META HTTP-EQUIV=REFRESH CONTENT=120>
    </HEAD>
    <body bgcolor=black text=lightblue>
    <center>refreshes every 2 minutes<br>
    <img src="http://www.kitewindsurf.com/kitecam/get_windcam_image.aspx">
    <br>
    <img src="http://www.windsurfing.cz/webcam9/ispy_m2.jpg?570">
    </center>
    </body>
    </html>
    as far as the other link that is a webpage you could use IFrames but that page jumps out of the frame.
    but since the first image is dated nov 9th i dont think you need to refresh it every 2 minutes
    Last edited by Vargas; 12-09-2004 at 06:15 PM.

  6. Internet, Programming and Graphics   -   #6
    david622's Avatar Procrastinator
    Join Date
    Jan 2004
    Location
    USA
    Age
    34
    Posts
    480
    If you use Opera, in the right-click menu there's a section called "refresh every" that will let you define the time between automatic refreshes. It's great for the end of ebay auctions and stuff.

    www.opera.com

  7. Internet, Programming and Graphics   -   #7
    100%'s Avatar ╚════╩═╬════╝
    Join Date
    Jan 2003
    Posts
    13,383
    thanx vargas

    will post a link once ive made this fully working

    cheers

  8. Internet, Programming and Graphics   -   #8
    BawA's Avatar FST Pioneer BT Rep: +1
    Join Date
    Jun 2003
    Location
    Some Where but not here
    Age
    41
    Posts
    4,213
    Quote Originally Posted by david622
    If you use Opera, in the right-click menu there's a section called "refresh every" that will let you define the time between automatic refreshes. It's great for the end of ebay auctions and stuff.

    www.opera.com
    he wants a scripts for his website so it reloads pages automaticly for vistors, like suprnova.
    Last edited by bawa@Klite_user; 12-10-2004 at 08:35 AM.


    "You can be mad as a mad dog at the way things went; you can swear and curse the fates, but when it comes to the end, you have to let go"
    Benjamen button

Bookmarks

Posting Permissions

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