Results 1 to 6 of 6

Thread: large file needs loading icon

  1. #1
    Join Date
    Oct 2004
    Posts
    17
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default large file needs loading icon

    I have a large JPG on my website. Down here in the Caribbean, our high speed is sputtering along. How do I add a loading icon so viewers know to wait for what's coming up?

  2. #2
    Join Date
    Aug 2006
    Posts
    239
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    how about:

    Code:
    .bigimage {
       background-image: url(please_wait_while_loading.gif);
       background-position: 50% 50%;
       background-repeat: none;
    }

  3. #3
    Join Date
    Jul 2006
    Location
    Canada
    Posts
    2,581
    Thanks
    13
    Thanked 28 Times in 28 Posts

    Default

    The image will still have to load into the user's cache before it can be displayed. This doesn't work for dial-up users.
    - Mike

  4. #4
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    It could work, if the loading image is of a small byte size and preloaded or even just mentioned in the code before the larger image, it will display until the larger image can.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  5. #5
    Join Date
    Jul 2006
    Location
    Canada
    Posts
    2,581
    Thanks
    13
    Thanked 28 Times in 28 Posts

    Default

    Code:
    <img lowsrc="loadingImage.gif" src="largeImage.gif">
    - Mike

  6. #6
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Quote Originally Posted by mburt
    Code:
    <img lowsrc="loadingImage.gif" src="largeImage.gif">
    Not supported in modern browsers as far as I know. Have you ever seen this actually work?
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

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
  •