-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (47 loc) · 2.19 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
39
40
41
42
43
44
45
46
47
48
49
50
<!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="shortcut icon" href="/tril.png" type="image/png" media="(prefers-color-scheme: light)">
<link rel="shortcut icon" href="/trid.png" type="image/png" media="(prefers-color-scheme: dark)">
<link rel="stylesheet" href="/style.css" />
<script>sessionStorage.setItem("vtbag-ui-standby", "true");</script>
</head>
<body>
<main>
<h1>Fun with View Transitions</h1>
<p class="intro">
Use these exercises 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>1. Enabling</p>
</a>
<a href="/episode/2/page1.html" class="episode-card">
<h2>Check and Control the Image Animations!</h2>
<p>2. Customizing</p>
</a>
<a href="/episode/3/page1.html" class="episode-card">
<h2>Make Your Images Glide Across the Screen!</h2>
<p>3. Morphing</p>
</a>
<a href="/episode/4/page1.html" class="episode-card">
<h2>On a Trip to the Text Morphology Clinic!</h2>
<p>4. Healing</p>
</a>
<a href="/episode/5/page1.html" class="episode-card">
<h2>Add View Transitions to Your Starlight Site!</h2>
<p>5. Twinkling</p>
</a>
</div>
<p>These exercises are available as a GitHub repository at <a href="https://github.com/vtbag/fun-with-view-transitions">https://github.com/vtbag/fun-with-view-transitions</a></p>
<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>