-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprodnotes.js
More file actions
31 lines (27 loc) · 948 Bytes
/
Copy pathprodnotes.js
File metadata and controls
31 lines (27 loc) · 948 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* Author: Kylie Drawdy
Date: 10/21/2024
*/
// Title of the slideshow
let lightboxTitle = "Product Information";
// Names of the image files shown in the slideshow
let imgFiles = new Array(8);
imgFiles[0]="images/basic.jpg";
imgFiles[1]="images/small.png";
imgFiles[2]="images/medium.png";
imgFiles[3]="images/large.png";
imgFiles[4]="images/specialty.jpg";
imgFiles[5]="images/limited.jpg";
imgFiles[6]="images/supreme.png";
imgFiles[7]="images/ultimate.png";
// Descriptions associated with each image
let imgDescriptions = new Array(8);
imgDescriptions[0]="Our Basic Widget";
imgDescriptions[1]="Our Small Widget";
imgDescriptions[2]="Our Medium Widget";
imgDescriptions[3]="Our Large Widget";
imgDescriptions[4]="Our Specialty Widget";
imgDescriptions[5]="Our Limited Widget";
imgDescriptions[6]="Our Supreme Widget";
imgDescriptions[7]="Our Ultimate Widget";
// Count of images in the slideshow
let imgCount = imgFiles.length;