forked from codepo8/simple-carousel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcarousel-noscript.html
More file actions
58 lines (55 loc) · 1.49 KB
/
carousel-noscript.html
File metadata and controls
58 lines (55 loc) · 1.49 KB
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
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Carousel - HTML structure</title>
<link rel="stylesheet" type="text/css" href="furniture.css">
<style type="text/css">
.carouselbox {
font-family: helvetica,sans-serif;
font-size: 14px;
width: 100px;
position: relative;
margin: 1em;
border: 1px solid #ccc;
box-shadow: 2px 2px 10px #ccc;
overflow: hidden;
}
.content {
margin: 0;
padding: 0;
}
.content li {
font-size: 100px;
margin: 0;
padding: 0;
width: 100%;
list-style: none;
text-align: center;
}
</style>
</head>
<body>
<div class="carouselbox">
<ol class="content">
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
</ol>
</div>
<nav>
<ul>
<li><strong>Plain HTML carousel structure</strong></li>
<li><a href="carousel-css-only.html">Styled and ready carousel</a></li>
<li><a href="carousel-simplest.html">Simplest possible carousel</a></li>
<li><a href="carousel-fancy.html">Fancier carousel</a></li>
<li><a href="carousel-progressive-enhancement.html">Capability testing</a></li>
<li><a href="carousel-pointer-events.html">CSS Pointer events fix</a></li>
<li><a href="carousel-images.html">Carousel with images</a></li>
<li><a href="https://github.com/codepo8/simple-carousel">View Source on GitHub</a></li>
</ul>
</nav>
</body>
</html>