Question: use strict; document.addEventListener ( DOMContentLoaded , ( ) = > { const images = document.querySelectorAll ( #image _ rollovers img ) ;
"use strict";
document.addEventListenerDOMContentLoaded
const images document.querySelectorAll#imagerollovers 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.addEventListenermouseover
image.src newURL;
;
image.addEventListenermouseout
image.src oldURL;
;
;
Assignment Part : 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.
Open the starter folder attached zipped to this Assignment folder:
EvaluationsAssignmentsAssignment AssignmentFiles.zip rollover
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.
Add JavaScript code to preload the rollover images. These are the images that are specified by the id attributes of the img elements.
Add a timer that causes the rollover images to be displayed one second after the page is loaded.
Add another timer that causes the original images to be displayed again two seconds after the page is loaded.
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
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
