Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

use strict; document.addEventListener ( DOMContentLoaded , ( ) = > { const images = document.querySelectorAll ( #image _ rollovers img ) ;

"use strict";
document.addEventListener("DOMContentLoaded",()=>{
const images = document.querySelectorAll("#image_rollovers img");
// process each img tag
for (let image of images){
const oldURL = image.src;
const newURL = image.id;
// preload rollover image
// set up event handlers for hovering an image
image.addEventListener("mouseover",()=>{
image.src = newURL;
});
image.addEventListener("mouseout",()=>{
image.src = oldURL;
});
}
});
Assignment 3 Part 1: Preload images and use a timer
In this assignment, youll modify an Image Rollover application, so it preloads the images that are displayed when the original images are rolled over. In addition, youll create timers that cause the rollover images to be displayed when the page is first loaded.
1. Open the starter folder attached (zipped) to this Assignment folder:
Evaluations\Assignments\Assignment 3\Assignment3-Files.zip -> rollover
2. Run the application and move the mouse pointer over each of the two images to see that the original image is replaced with another image when the mouse is in the image.
3. Add JavaScript code to preload the rollover images. These are the images that are specified by the id attributes of the img elements.
4. Add a timer that causes the rollover images to be displayed one second after the page is loaded.
5. Add another timer that causes the original images to be displayed again two seconds after the page is loaded.
6. In index.html, change the text in the tag to your name and student number.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Knowledge Discovery In Databases

Authors: Gregory Piatetsky-Shapiro, William Frawley

1st Edition

0262660709, 978-0262660709

More Books

Students also viewed these Databases questions

Question

Question Can a self-employed person adopt a money purchase plan?

Answered: 1 week ago