Think of and describe at least two practical uses for displaying a sequence of images. Write no more than three or four paragraphs in HTML. Has to be HTML related just write an explanation
Slide show is a presentation of a series typically in a prearranged sequence.
Its use is usually with the intention of creating a dynamic presentation of the sequence.
For displaying a sequence of images use Javascript:
var image[30];
var name[30]={"image1.jpg","image2.jpg"...}
function loadingImages() {
for(var i=0;i<30;i++) {
image[i] = new image();
image[i].src = "www. .com/"+name[i];
}
}
Load this in html body:
<body onLoad="loadingImages()"></body>
Get Answers For Free
Most questions answered within 1 hours.