Question: ! - - Assignment 4 Part 2 : Develop an Image Gallery application with animation In this assignment, you ll develop an Image Gallery application
Assignment Part : Develop an Image Gallery application with animation
In this assignment, youll develop an Image Gallery application that displays different
images when the user clicks on the links at the top of the page. This works like the
Image Swap application. Youll then use effects to change the way the images are
displayed and hidden.
Review the content of the starter folder, imagegallery.
In the JavaScript file, add an event handler for the ready event method.
Use the each method to run a function for each element in the unordered list
of items. Then, add jQuery code that gets the URL and caption for each image and preloads
the image. You can get the URL from the href attribute of the element, and you can
get the caption from the title attribute.
Add an event handler for the click event method of each link. The function for
this event handler should accept a parameter named event. The jQuery code for this event
handler should display the image and caption for the link that was clicked. In addition,
it should use the event parameter to cancel the default action of the link.
Add a jQuery statement that moves the focus to the first link on the page when
the page is loaded.
Modify the jQuery so that when a link is clicked, the current caption and image
are hidden using a sliding motion that takes three seconds.
Modify the jQuery so that after the caption and URL are set for the new image,
that caption and image are displayed using a sliding motion that takes three seconds.
In index.html change the text in the tag to your name and student number.
give me java code for this
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
