-
Notifications
You must be signed in to change notification settings - Fork 745
/
index.html
173 lines (167 loc) · 6 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
163
164
165
166
167
168
169
170
171
172
173
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width">
<meta name="author" content="Paul Lewis" />
<title>UI element samples</title>
<style>
html,
body {
margin: 0;
color: #404040;
font-family: -apple-system, BlinkMacSystemFont,
'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
line-height: 1.5;
}
body {
padding: 1em 1em 4em;
}
a {
color: #3F51B5;
text-decoration: underline;
-webkit-text-decoration-skip: ink;
text-decoration-skip: ink;
}
a:visited {
color: #1A237E !important;
}
ul ul {
padding-left: 1.5em;
}
ul h1,
ul h2,
ul h3 {
font-weight: normal;
margin: 0;
font-size: 1em;
}
</style>
</head>
<body>
<h1>UI Element Samples</h1>
<ul>
<li>
<h2>Supercharged Episodes (<a href="https://www.youtube.com/playlist?list=PLNYkxOF6rcIBz9ACEQRmO9Lw8PW7vn0lr">Playlist</a>)</h2>
<ul>
<li>
<a href="./image-zoomer/">Episode 1. Image Zoomer</a>,
(<a href="https://www.youtube.com/watch?v=e8IwM3iqnL0">Live-coding session</a>)
</li>
<li>
<a href="./swipeable-cards/">Episode 2. Swipeable Cards</a>
(<a href="https://www.youtube.com/watch?v=rBSY7BOYRo4">Live-coding session</a>,
<a href="https://www.youtube.com/watch?v=F3A6Skckh9c">TL;DR</a>)
</li>
<li>
<a href="./side-nav/">Episode 3. Side Nav</a>
(<a href="https://www.youtube.com/watch?v=e5CXg1sjTqQ">Live-coding session</a>,
<a href="https://www.youtube.com/watch?v=Mhnj3PiPnZw">TL;DR</a>)
</li>
<li>
<a href="./router/">Episode 4. Router Part I</a>
(<a href="https://www.youtube.com/watch?v=Sw-ICM_V1eQ">Live-coding session</a>,
<a href="https://www.youtube.com/watch?v=q2azIeeeqZA">TL;DR</a>)
</li>
<li>
<a href="./router-advanced/">Episode 5. Router Part II</a>
(<a href="https://www.youtube.com/watch?v=fAFYXPVdJ7I">Live-coding session</a>,
<a href="https://www.youtube.com/watch?v=j63wb8OfrZE">TL;DR</a>)
</li>
<li>
<a href="./accordion/">Episode 6. Accordion</a>
(<a href="https://www.youtube.com/watch?v=P2glQ0fz7DM">Live-coding session</a>,
<a href="https://www.youtube.com/watch?v=hw4mo7EALOw">TL;DR</a>)
</li>
<li>
<a href="./3d-card-flip/">Episode 7. 3D Card Flip</a>
(<a href="https://www.youtube.com/watch?v=rn5s6H_Yamo">Live-coding session</a>,
<a href="https://www.youtube.com/watch?v=e9UXt8P9XKU">TL;DR</a>)
</li>
<li>
<a href="./server-side-rendering">Episode 8. Server-Side Rendering</a>
(<a href="https://www.youtube.com/watch?v=8LM4p7l9YMY">Live-coding session</a>,
<a href="https://www.youtube.com/watch?v=Tzmmt0gO3Hw">TL;DR</a>)
</li>
<li>
<a href="./code-splitting">Episode 9. Code-Splitting</a>
(<a href="https://www.youtube.com/watch?v=4KVeNoN1aFM">Live-coding session</a>)
</li>
<li>
<a href="./streaming-service-worker">Episode 10. Streaming ServiceWorker</a>
(<a href="https://www.youtube.com/watch?v=3Tr-scf7trE">Live-coding session</a>)
</li>
<li>
<a href="./webgl-image-processing">Episode 11. WebGL Image Processing</a>
(<a href="https://www.youtube.com/watch?v=_ZQOUQsw_YI">Live-coding session</a>)
</li>
<li>
<a href="./web-workers">Episode 12. WebWorkers</a>
(<a href="https://www.youtube.com/watch?v=X57mh8tKkgE">Live-coding session</a>)
</li>
</ul>
</li>
<li>
<h2>Events</h2>
<ul>
<li>
<h3>2017</h3>
<ul>
<li>
<a href="./stream-progress/">I/O 2017: Stream Progress</a>
(<a href="https://www.youtube.com/watch?v=JkXZ35MSLaE">Live-coding session</a>)
</li>
<li>
<a href="./lazy-image/static/index_rendered.html">Polymer Summit 2017: Lazy-loading image element</a>
(<a href="https://www.youtube.com/watch?v=tHJwRWrexqg">Live-coding session</a>)
</li>
</ul>
</li>
<li>
<h3>2016</h3>
<ul>
<li>
<a href="./expand-collapse/">I/O 2016: Expand & Collapse</a>
</li>
<li>
<a href="./flip-switch/">Polymer Summit 2016: Flip Switch</a>
(<a href="https://www.youtube.com/watch?v=r94IxRRKR0A">Live-coding session</a>)
</li>
<li>
<a href="./service-worker">Chrome Dev Summit: Service worker</a>
(<a href="https://www.youtube.com/watch?v=X8EQSy-ajo4">Live-coding session</a>)
</li>
</ul>
</li>
</ul>
</li>
<li>
<h2>Blog posts</h2>
<ul>
<li>
<a href="./infinite-scroller/">Infinite Scroller</a>
(<a href="https://developers.google.com/web/updates/2016/07/infinite-scroller">Blog post</a>)
</li>
<li>
<a href="./parallax/">Parallax</a>
(<a href="https://developers.google.com/web/updates/2016/12/performant-parallaxing">Blog post</a>)
</li>
<li>
<a href="./animated-clip/">Animated clip</a>
(<a href="./animated-clip/advanced/">Advanced circular reveal</a>,
<a href="https://developers.google.com/web/updates/2017/03/performant-expand-and-collapse">Blog post</a>)
</li>
<li>
<a href="./custom-scrollbar/">Custom Scrollbar</a>
(<a href="https://developers.google.com/web/updates/2017/03/custom-scrollbar">Blog post</a>)
</li>
</ul>
</li>
<li>
<a href="./template/">Template</a>
</li>
</ul>
<a href="https://github.com/googlechrome/ui-element-samples">See the source code on GitHub</a>
</body>
</html>