-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
162 lines (162 loc) · 5.14 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="./index-style.css" rel="stylesheet" />
<title>View Transitions API polyfill demos</title>
</head>
<body>
<div class="page">
<h1>View Transitions API polyfill demos</h1>
<div class="buttons-wrapper">
<a
class="link-button"
href="https://github.com/demarketed/view-transitions-polyfill"
>
<img
class="logo light-mode"
alt=""
src="./demos/assets/github-mark/github-mark.svg"
/>
<img
class="logo dark-mode"
alt=""
src="./demos/assets/github-mark/github-mark-white.svg"
/>
GitHub repository
</a>
<a
class="link-button"
href="https://www.npmjs.com/package/view-transitions-polyfill"
>
<img class="logo" src="./demos/assets/npm-mark/npm-mark.svg" />
npm package
</a>
</div>
<section aria-labelledby="featured-demos">
<h2 id="featured-demos">✨ Featured demos</h2>
<ul role="list">
<li>
<a href="./demos/cross-fade/index.html">
<span class="link-wrapper">Cross fade</span>
</a>
</li>
<li>
<a href="./demos/moving-axis/index.html">
<span class="link-wrapper">Moving axis</span>
</a>
</li>
<li>
<a href="./demos/expanding-image/index.html">
<span class="link-wrapper">Expanding image</span>
</a>
</li>
<li>
<a href="./demos/media-queries/index.html">
<span class="link-wrapper">Media queries</span>
</a>
</li>
<li>
<a href="./demos/video/index.html">
<span class="link-wrapper">Video</span>
</a>
</li>
</ul>
</section>
<section aria-labelledby="special-effects-demos">
<h2 id="special-effects-demos">🪄 Special effects demos</h2>
<ul>
<li>
<a href="./demos/circle-transition/index.html">
<span class="link-wrapper">Circle transition</span>
</a>
</li>
<li>
<a href="./demos/batman-transition/index.html">
<span class="link-wrapper">Batman transition</span>
</a>
</li>
<li>
<a href="./demos/3d-transition/index.html">
<span class="link-wrapper">3D transition</span>
</a>
</li>
<li>
<a href="./demos/bounce/index.html">
<span class="link-wrapper">Bounce transition</span>
</a>
</li>
<li>
<a href="./demos/star-wars/index.html">
<span class="link-wrapper">Star Wars</span>
</a>
</li>
</ul>
</section>
<section aria-labelledby="test-pages">
<h2 id="test-pages">Test pages</h2>
<ul>
<li>
<a href="./demos/disappearing-elements/index.html">
<span class="link-wrapper">Disappearing elements</span>
</a>
</li>
<li>
<a href="./demos/transforming-elements/index.html">
<span class="link-wrapper">Transforming elements</span>
</a>
</li>
<li>
<a href="./demos/style-attribute/index.html">
<span class="link-wrapper">Style attribute</span>
</a>
</li>
<li>
<a href="./demos/scroll-test/index.html">
<span class="link-wrapper">Scroll test</span>
</a>
</li>
<li>
<a href="./demos/margin-collapse/index.html">
<span class="link-wrapper">Margin collapse test</span>
</a>
</li>
<li>
<a href="./demos/image-test/index.html">
<span class="link-wrapper">Image test</span>
</a>
</li>
<li>
<a href="./demos/mix-blend-mode/index.html">
<span class="link-wrapper">Mix blend mode test</span>
</a>
</li>
</ul>
</section>
<section aria-labelledby="test-report">
<h2 id="test-report">Test report</h2>
<p>
If you are serving this page locally and you have
<a
href="https://github.com/demarketed/view-transitions-polyfill#testing"
>run tests</a
>, here is a
<a href="./test/report/index.html">link to the tests' report page</a>.
</p>
</section>
<footer>
<p>
<small>
GITHUB®, the GITHUB® logo design, the INVERTOCAT logo design,
OCTOCAT®, and the OCTOCAT® logo design are trademarks of GitHub,
Inc., registered in the United States and other countries.
</small>
</p>
<p>
<small> npm is a registered trademark of npm, Inc. </small>
</p>
</footer>
</div>
</body>
</html>