search
HomeWeb Front-endJS TutorialIntroduction to js preloading and JavaScript Image() object usage_javascript skills

Preloading and JavaScript Image() Objects

A lot of high-res images can really make a website cleaner. But they can also make your site slower - images are files, files use bandwidth, and bandwidth is directly related to latency. It's time to learn how to speed up your Web site through a technique called image preloading.
Image preloading
For browser to load images, they will only be loaded by the browser after sending an HTTP request for the image. The HTTP request for the image is either Use the Introduction to js preloading and JavaScript Image() object usage_javascript skills tag, or via a method call. If you use a JavaScript script to handle swapping images on mouseover events, or automatically changing images after a period of time, you may have to wait from a few seconds to a few minutes while getting the image from the server. This is especially true if you're using a slow Internet connection, or the image you're trying to retrieve is very large, or some other situation; in this case, the delay will prevent you from achieving the results you expect.
Some browsers take some measures to alleviate this problem, such as trying to store the image in the local cache so that subsequent calls to the image can be satisfied immediately; however, there will still be some problems when the image is first called. Delay. Preloading is a method of downloading images to cache before they are needed. This way, when the image is actually needed, it can be fetched from the cache and displayed immediately.
Image() object
The easiest way to preload an image is to instantiate a new Image() object in JavaScript, and then pass in the URL of the image that needs to be loaded as a parameter . Suppose we have an image called heavyimagefile.jpg, and we want to display this image when the user's mouse is placed over an already displayed image. To preload this image for faster response times, we simply create an Image() object heavyImage and load it simultaneously in the onLoad() event handler.

Copy code The code is as follows:







Introduction to js preloading and JavaScript Image() object usage_javascript skills


< ;/html>

Please note that the image tag itself cannot handle onMouseOver() and onMouseOut() events, which is why the Introduction to js preloading and JavaScript Image() object usage_javascript skills tag is contained within an tag in the example above For the same reason, the tag supports both event types.
Use an array to load multiple images
In actual applications, we may need to preload multiple images, not just one; for example, in a menu bar that contains multiple images scrolling , or when we are trying to create a smooth effect, we need to preload multiple images. In fact, this is not difficult, just use JavaScript arrays to achieve it, as shown in the following example:
Copy code The code is as follows:



In the above example, we define a variable i and an Image() object imageObj. Then a new array images[] is defined, each array element stores the image to be preloaded. Finally, create a for() loop that processes the entire array and assigns each element to an Image() object, thus loading it into the cache.
onLoad() event handler
Like many other objects in JavaScript, the Image() object also has some event handlers. One of the most useful is definitely the onLoad() handler, which is called after the image has fully loaded. This event handler can be linked to a custom function to perform some specific tasks after the image is fully loaded. This is illustrated in the example below, which first displays a "please wait" screen while the image loads, and then forwards the browser to a new URL when the load is complete.
Copy code The code is as follows:






Please wait, loading images...



Of course, you can also create an array of images and then loop over it, preloading each image, and then Keep track of the number of images loaded at each stage. Once all images are loaded, depending on the event handler's program logic, it can take the browser to the next page (or perform other tasks).
Preloading and multi-state menus
Now, how do you use all the theory you learned in a real-world application? The code below is a menu bar I occasionally wrote recently. This menu bar consists of some buttons (image links), each button has three states: normal, hover and click. Because buttons have multiple states, it is necessary to use image preloading to ensure that the menu state can respond quickly. The code in Listing A illustrates how to do this.
The HTML code in Listing A sets up a menu of four buttons, each with three states: normal, hover, and click. The requirements are as follows:
# When the mouse moves over a button in the normal state, it changes to the hover state. After the mouse is moved away, the button returns to its normal state.
# When the mouse clicks a button, the button becomes clicked. It will remain in this state until another button is clicked.
# If a button is clicked, the status of other buttons cannot be clicked. Other buttons can only be in hover state or normal state.
# Only one button can be clicked at the same time.
# Only one button can be hovered at the same time.
The first task is to set up an array to save images for each state of the menu. Introduction to js preloading and JavaScript Image() object usage_javascript skills corresponding to these array elements are also created in the HTML document body (body) and named sequentially. Note that the array values ​​are indexed from 0, although the corresponding Introduction to js preloading and JavaScript Image() object usage_javascript skills elements are named from 1 - this will require calculation adjustments later in the script.
The function preloadImage() is responsible for storing all images in the cache to minimize the response time of mouse movements. The for() loop is used to iterate over the images created in the first step and preload an image in each iteration.
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Replace String Characters in JavaScriptReplace String Characters in JavaScriptMar 11, 2025 am 12:07 AM

Detailed explanation of JavaScript string replacement method and FAQ This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages. Replace string inside JavaScript code The most direct way is to use the replace() method: str = str.replace("find","replace"); This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g: str = str.replace(/fi

Build Your Own AJAX Web ApplicationsBuild Your Own AJAX Web ApplicationsMar 09, 2025 am 12:11 AM

So here you are, ready to learn all about this thing called AJAX. But, what exactly is it? The term AJAX refers to a loose grouping of technologies that are used to create dynamic, interactive web content. The term AJAX, originally coined by Jesse J

10 jQuery Fun and Games Plugins10 jQuery Fun and Games PluginsMar 08, 2025 am 12:42 AM

10 fun jQuery game plugins to make your website more attractive and enhance user stickiness! While Flash is still the best software for developing casual web games, jQuery can also create surprising effects, and while not comparable to pure action Flash games, in some cases you can also have unexpected fun in your browser. jQuery tic toe game The "Hello world" of game programming now has a jQuery version. Source code jQuery Crazy Word Composition Game This is a fill-in-the-blank game, and it can produce some weird results due to not knowing the context of the word. Source code jQuery mine sweeping game

How do I create and publish my own JavaScript libraries?How do I create and publish my own JavaScript libraries?Mar 18, 2025 pm 03:12 PM

Article discusses creating, publishing, and maintaining JavaScript libraries, focusing on planning, development, testing, documentation, and promotion strategies.

jQuery Parallax Tutorial - Animated Header BackgroundjQuery Parallax Tutorial - Animated Header BackgroundMar 08, 2025 am 12:39 AM

This tutorial demonstrates how to create a captivating parallax background effect using jQuery. We'll build a header banner with layered images that create a stunning visual depth. The updated plugin works with jQuery 1.6.4 and later. Download the

How do I optimize JavaScript code for performance in the browser?How do I optimize JavaScript code for performance in the browser?Mar 18, 2025 pm 03:14 PM

The article discusses strategies for optimizing JavaScript performance in browsers, focusing on reducing execution time and minimizing impact on page load speed.

Auto Refresh Div Content Using jQuery and AJAXAuto Refresh Div Content Using jQuery and AJAXMar 08, 2025 am 12:58 AM

This article demonstrates how to automatically refresh a div's content every 5 seconds using jQuery and AJAX. The example fetches and displays the latest blog posts from an RSS feed, along with the last refresh timestamp. A loading image is optiona

Getting Started With Matter.js: IntroductionGetting Started With Matter.js: IntroductionMar 08, 2025 am 12:53 AM

Matter.js is a 2D rigid body physics engine written in JavaScript. This library can help you easily simulate 2D physics in your browser. It provides many features, such as the ability to create rigid bodies and assign physical properties such as mass, area, or density. You can also simulate different types of collisions and forces, such as gravity friction. Matter.js supports all mainstream browsers. Additionally, it is suitable for mobile devices as it detects touches and is responsive. All of these features make it worth your time to learn how to use the engine, as this makes it easy to create a physics-based 2D game or simulation. In this tutorial, I will cover the basics of this library, including its installation and usage, and provide a

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software