-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (35 loc) · 1.38 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Fun with View Transitions</title>
<link rel="stylesheet" href="/style.css" />
</head>
<body>
<main>
<h1>Fun with View Transitions</h1>
<p class="intro">
Use these examples as an interactive playground to deepen your understanding of the
View Transitions API! Visit the single episodes at <a href="https://vtbag.dev/fwvt/welcome/">vtbag.dev</a>!
</p>
<div class="episode-grid">
<a href="/episode/1/page1.html" class="episode-card">
<h2>Ladies and Gentlemen, Start Your Engines!</h2>
<p>Episode 1</p>
</a>
<a href="/episode/2/page1.html" class="episode-card">
<h2>Check and Control the Image Animations!</h2>
<p>Episode 2</p>
</a>
<a href="/episode/3/page1.html" class="episode-card">
<h2>Make Your Images Glide Across the Screen!</h2>
<p>Episode 3</p>
</a>
</div>
<p style="color:gray">
Find the examples for the episodes in the /episodes/ folder. Edit the <code>view-transition.css</code> file to customize the view transitions. There is also a <code>view-transition-solution.css</code> file if you got stuck.
</p>
</main>
</body>
</html>