-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
57 lines (55 loc) · 1.69 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
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="view-transition" content="same-origin" />
<title>MPA View Transitions Sandbox</title>
<link rel="stylesheet" href="./shared.css" />
</head>
<body>
<main class="standard-content">
<h1>MPA View Transitions Sandbox</h1>
<p>A collection of example view transitions for multi-page sites.</p>
<h2>Full page transitions</h2>
<ul>
<li>
<a href="/basic">Basic</a>
No CSS customization, browser defaults
</li>
<li>
<a href="/slide-left">Slide Left</a>
All pages slide in from the right to the left
</li>
<li>
<a href="/slide-left-in-out">Slide Left In and Out</a>
All pages slide in from the right to left and out to the left
</li>
<li>
<a href="/unique-page-slide">Slide In/Out Unique to Page</a>
Each page slides in and out in a different direction
</li>
<li>
<a href="/scale">Scale</a>
Each page scales in and out
</li>
<li>
<a href="/blur">Blur</a>
Each page blurs in and out
</li>
</ul>
<h2>Content transitions</h2>
<ul>
<li>
<a href="/grid-item-view">Grid Item View</a>
A standard grid of items and a transition to and from a single item
view
</li>
<li>
<a href="/sequenced-items/">Sequenced Items</a>
A number of elements transition in a sequence. (pretty hacky still)
</li>
</ul>
</main>
</body>
</html>