-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjs05txt.html
42 lines (36 loc) · 1.17 KB
/
js05txt.html
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
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<!--
JavaScript 7th Edition
Chapter 5
Chapter Case
Author: Nikko Thorne
Date: 1/29/2022
Filename: js05.html
-->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Chapter 5 Case Problem</title>
<link rel="stylesheet" href="selection.css">
<link rel="stylesheet" href="styles.css" />
<link rel="stylesheet" href="lightbox.css" />
<script src="lightbox_data.js" defer></script>
<script src="js05_txt.js" defer></script>
</head>
<body>
<article>
<h1>Interactive Slideshow</h1>
<p>To view your slides:</p>
<ul>
<li>Click the Right or Left arrow buttons to move forward or backward through the image list.</li>
<li>Click the Play/Pause button to automatically move forward through the image list.</li>
<li>Click an image to view it in full screen mode.</li>
</ul>
<div id="lightbox"> ></div>
<div id="heading"><h1>Add to favorites</h1></div>
<div id="selectionbox">
</div>
</article>
</body>
</html>