-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvanilla.html
30 lines (30 loc) · 973 Bytes
/
vanilla.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<link rel="stylesheet" href="/src/styles.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Carousel Vanilla</title>
</head>
<body>
<div style="margin-top: 20px"><a href="/">Back</a></div>
<h1>Carousel in Vanilla</h1>
<main style="--scrollSnapType: none; --scrollSnapAlign: none">
<nav>
Scroll Snap:
<select>
<option value="none">No Snap</option>
<option value="start">Start</option>
<option value="center">Center</option>
<option value="end">End</option>
</select>
<button>Prev</button>
<input type="text" value="1" />
<button>Next</button>
</nav>
<ul class="scroller"></ul>
</main>
<script type="module" src="/src/vanilla/main.ts"></script>
</body>
</html>