CodingForums.com

CodingForums.com (http://www.codingforums.com/index.php)
-   HTML & CSS (http://www.codingforums.com/forumdisplay.php?f=13)
-   -   preload gallery/slider images in HTML (http://www.codingforums.com/showthread.php?t=273601)

rapha 09-19-2012 09:10 PM

preload gallery/slider images in HTML
 
I have a large, wide image within a portfolio page.
The images are saved "progressive" and they load fine.

I was wondering if there's a way though to kind of preload those images to make them appearing faster and smoother. Or maybe there's a way to preload all the other pages and images into the cache so that at least all the other images after the first appear smooth and fast?

Any suggestions?

Each image consists of a variety of images, all of them within one wide image (prepared in PSD) and the visitor can shift left and right to call for the respective image to appear in the center.
Unfortunately sacrificing on the image quality or make them smaller is not an option here.

Please have merci, I'm a CSS and Javascript novice, so the simpler the more likely I'll understand it. I'm afraid breaking up the images in single instances (make it a row of images instead of one whole image), place them in a floated div and change the respective Javascript code could be too challenging for me, right...? How else could I do that?

Appreciated!

Here's what I have (I guess it would be overkill to post all my HTML, Javascript and CSS here, I'll post some). The large images are placed within the HTML page and called via Javascript.

http://raphaelzwyer.com/testRapha/portfolio_ms.html

Code:

<div class="ShiftGroup">
                        <div class="ShiftGroupC">
            <div class="ShiftGroupI"><div id="ShiftGalleryFive"><img src="images/gallery_anzic1.png" width="3348" height="372" alt="imagegallery1" /></div></div>
                        <div class="ShiftGroupP" style="margin-left: -990px;"><div id="ShiftLeft" class="ShiftGroupD"><span class="pointer"><img src="images/arrowleft.png" width="78" height="50" alt="arrowsleft" /></span></div></div>
                        <div class="ShiftGroupP" style="margin-left: 341px;"><div id="ShiftRight" class="ShiftGroupD"><span class="pointer"><img src="images/arrowright.png" width="78" height="50" alt="arrowright" /></span></div></div>

and

Code:

gallery = document.getElementById('ShiftGalleryFour').style;

Sammy12 09-19-2012 09:14 PM

There are many articles on how to do this.

A simple Google search:
https://www.google.com/search?q=java...hrome&ie=UTF-8

Here is a JavaScript snippet:
http://www.mediacollege.com/internet...e/preload.html

^ I would go with that one. You should use the array in the tutorial.


All times are GMT +1. The time now is 06:37 PM.

Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.