4 Simple Solutions To Preload Images using CSS or JavaScript

Sometimes we need to JavaScript preload images on the web pages for some predicted purposes. And this post is a should-stop to read, because this post provides you 4 simple solutions to preload necessary images on your web pages using CSS, preload images with jQuery and JavaScript, Mootools preload images. All solutions are very simple to implement, please go to the full-post page for detailed instructions and JavaScript example codes.

Check our other solutions to preload your images:
- Best Ways to Preload Image JavaScript with CSS, AJAX
- Image Preloader MKII
- Preload Image with progress bar


Sampled by © JavaScriptBank.com

If you use an image for the background image of an element on a mouseOver or :hover event(for example, navigation menu which images are used), the image will not load until the first :hover event if you only apply that background-image in the CSS for the :hover state. The preloader will help you with this! It’ll load those images when the page loads and stores them in your browsers cache. So avoid delays with rollover effects. In this article, you’ll learn 4 ways to preload images with CSS or javascript technique.

OPTION 1: Use A Little CSS(display:none;)

1#preloadedImages {
2       width: 0px;
3       height: 0px;
4       display: inline;
5       background-image: url(path/to/image1.png);
6       background-image: url(path/to/image2.png);
7       background-image: url(path/to/image3.png);
8       background-image: url(path/to/image4.png);
9       background-image: url();
10}

and below is another sample:

1ul{
2margin: 0;
3padding: 0;
4list-style-type: none;
5font: 13px ‘Lucida Grande’, Arial, sans-serif;
6}
7ul li{
8display: inline;
9}
10ul li a{
11display:block;
12width:120px;
13text-decoration: none;
14padding: 0.3em 1em;
15color: #000;
16background:url(images/link.gif);
17}
18ul li a:hover{
19width:120px;
20background:url(images/hover.gif);
21}

OPTION 2: Preload The Images With JavaScript

1<script type="text/javascript" language="JavaScript">
2companyLogo = new Image();
3companyLogo.src = "logo.gif";
4</script>

You will need to have the two lines of JavaScript for each image you want to preload, and you will need to browser has to support JavaScript and have the two lines of JavaScript in your site.

OPTION 3: Automatically Preload images from CSS With jQuery

You can download a jQuery plugin from here, attached the jQuery javascript library and preloadCssImages.jQuery_v5.js to your page, and call $.preloadCssImages(); The source code like this: 

1$(document).ready(function(){
2  $.preloadCssImages();
3});

OPTION 4: Stick The Images In a Hidden Frame

A hidden frame is just a frame window set to 0%.

Language
Translate this page to English Translate this page to French Translate this page to Vietnamese

Recent articles
How to open a car sharing service
Vue developer as a vital part of every software team
Vue.js developers: hire them, use them and get ahead of the competition
3 Reasons Why Java is so Popular
Migrate to Angular: why and how you should do it
The Possible Working Methods of Python Ideology
JavaScript Research Paper: 6 Writing Tips to Craft a Masterpiece
Learning How to Make Use of New Marketing Trends
5 Important Elements of an E-commerce Website
How To Create A Successful Prototype For Your PCB


Top view articles
Top 10 Beautiful Christmas Countdown Timers
Adding JavaScript to WordPress Effectively with JavaScript Localization feature
65 Free JavaScript Photo Gallery Solutions
16 Free Code Syntax Highlighters by Javascript For Better Programming
Best Free Linux Web Programming Editors
Top 10 Best JavaScript eBooks that Beginners should Learn
Top 50 Most Addictive and Popular Facebook mini games
More 30 Excellent JavaScript/AJAX based Photo Galleries to Boost your Sites
Top 10 Free Web Chat box Plug-ins and Add-ons
The Ultimate JavaScript Tutorial in Web Design


Free JavaScript Tutorials & Articles
at www.JavaScriptBank.com