-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcarousel.html
50 lines (41 loc) · 1.62 KB
/
carousel.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
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" href="css/carousel.css">
<title>CSS3 3D Carousel</title>
</head>
<body>
<div class="example">
<h1>CSS 3 Carousel</h1>
<input checked id="one" name="carousel" type="radio" value="1">
<label for="one">1</label>
<input id="two" name="carousel" type="radio" value="2">
<label for="two">2</label>
<input id="three" name="carousel" type="radio" value="3">
<label for="three">3</label>
<input id="four" name="carousel" type="radio" value="4">
<label for="four">4</label>
<input id="five" name="carousel" type="radio" value="5">
<label for="five">5</label>
<input id="six" name="carousel" type="radio" value="6">
<label for="six">6</label>
<input id="seven" name="carousel" type="radio" value="7">
<label for="seven">7</label>
<input id="eight" name="carousel" type="radio" value="8">
<label for="eight">8</label>
<div class="container">
<ul class="carousel">
<li><img src="images/1.png" alt="Landscape 1"></li>
<li><img src="images/2.png" alt="Landscape 2"></li>
<li><img src="images/3.png" alt="Landscape 3"></li>
<li><img src="images/4.png" alt="Landscape 4"></li>
<li><img src="images/5.png" alt="Landscape 5"></li>
<li><img src="images/6.png" alt="Landscape 6"></li>
<li><img src="images/7.png" alt="Landscape 7"></li>
<li><img src="images/8.png" alt="Landscape 8"></li>
</ul>
</div>
</div>
</body>
</html>