forked from material-components/material-components-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fab.html
276 lines (264 loc) · 12 KB
/
fab.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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
<!DOCTYPE html>
<!--
Copyright 2016 Google Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-->
<html>
<head>
<meta charset="utf-8">
<title>Floating Action Button - Material Components Catalog</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="/images/logo_components_color_2x_web_48dp.png">
<link rel="stylesheet" href="/assets/fab.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto+Mono">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<script src="/ready.js"></script>
</head>
<body class="mdc-typography">
<header class="mdc-toolbar mdc-toolbar--fixed">
<div class="mdc-toolbar__row">
<section class="mdc-toolbar__section mdc-toolbar__section--align-start">
<a href="/" class="catalog-back mdc-toolbar__menu-icon"><i class="material-icons"></i></a>
<span class="mdc-toolbar__title catalog-title">Floating Action Button</span>
</section>
</div>
</header>
<main>
<div class="mdc-toolbar-fixed-adjust"></div>
<section class="hero">
<button class="mdc-fab" aria-label="Favorite">
<span class="mdc-fab__icon material-icons">favorite_border</span>
</button>
</section>
<button class="mdc-fab demo-fixed-fab">
<span class="mdc-fab__icon">
<svg width="24" height="24" viewBox="0 0 24 24">
<path d="M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"/>
</svg>
</span>
</button>
<section>
<legend>FABs with Ripple</legend>
<div class="demo-fabs">
<figure>
<button class="mdc-fab" aria-label="Favorite">
<span class="mdc-fab__icon material-icons">favorite_border</span>
</button>
<figcaption>
<div>Themed FAB</div>
</figcaption>
</figure>
<figure>
<button class="mdc-fab mdc-fab--mini" aria-label="Favorite">
<span class="mdc-fab__icon material-icons">favorite_border</span>
</button>
<figcaption>
<div>Mini FAB</div>
<div><code>mdc-fab--mini</code></div>
</figcaption>
</figure>
<figure>
<button class="mdc-fab" aria-label="Favorite">
<svg xmlns="http://www.w3.org/2000/svg" class="mdc-fab__icon" viewBox="0 0 24 24" fill="#000000">
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M23 12c0-6.07-4.93-11-11-11S1 5.93 1 12s4.93 11 11 11 11-4.93 11-11zM5 17.64C3.75 16.1 3 14.14 3 12c0-2.13.76-4.08 2-5.63v11.27zM17.64 5H6.36C7.9 3.75 9.86 3 12 3s4.1.75 5.64 2zM12 14.53L8.24 7h7.53L12 14.53zM17 9v8h-4l4-8zm-6 8H7V9l4 8zm6.64 2c-1.55 1.25-3.51 2-5.64 2s-4.1-.75-5.64-2h11.28zM21 12c0 2.14-.75 4.1-2 5.64V6.37c1.24 1.55 2 3.5 2 5.63z"/>
</svg>
</button>
<figcaption>
<div>SVG FAB</div>
</figcaption>
</figure>
<figure>
<button class="mdc-fab mdc-fab--mini" aria-label="Favorite">
<svg xmlns="http://www.w3.org/2000/svg" class="mdc-fab__icon" viewBox="0 0 24 24" fill="#000000">
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M23 12c0-6.07-4.93-11-11-11S1 5.93 1 12s4.93 11 11 11 11-4.93 11-11zM5 17.64C3.75 16.1 3 14.14 3 12c0-2.13.76-4.08 2-5.63v11.27zM17.64 5H6.36C7.9 3.75 9.86 3 12 3s4.1.75 5.64 2zM12 14.53L8.24 7h7.53L12 14.53zM17 9v8h-4l4-8zm-6 8H7V9l4 8zm6.64 2c-1.55 1.25-3.51 2-5.64 2s-4.1-.75-5.64-2h11.28zM21 12c0 2.14-.75 4.1-2 5.64V6.37c1.24 1.55 2 3.5 2 5.63z"/>
</svg>
</button>
<figcaption>
<div>SVG Mini FAB</div>
<div><code>mdc-fab--mini</code></div>
</figcaption>
</figure>
<figure>
<button class="mdc-fab lightGreen800Fab" aria-label="Favorite">
<span class="mdc-fab__icon material-icons">favorite_border</span>
</button>
<figcaption>
<div>Customized Accessible FAB</div>
<div><code>@include mdc-fab-accessible</code></div>
</figcaption>
</figure>
<figure>
<button class="mdc-fab lightGreen800Fab mdc-fab--mini" aria-label="Favorite">
<span class="mdc-fab__icon material-icons">favorite_border</span>
</button>
<figcaption>
<div>Customized Accessible Mini FAB</div>
</figcaption>
</figure>
</div>
</section>
<section>
<legend>FABs with Larger Icons</legend>
<div class="demo-fabs">
<figure>
<button class="mdc-fab demo-fab-icon-size" aria-label="Favorite">
<span class="mdc-fab__icon material-icons">favorite_border</span>
</button>
<figcaption>
<div>Themed FAB</div>
</figcaption>
</figure>
<figure>
<button class="mdc-fab mdc-fab--mini demo-fab-icon-size" aria-label="Favorite">
<span class="mdc-fab__icon material-icons">favorite_border</span>
</button>
<figcaption>
<div>Mini FAB</div>
<div><code>mdc-fab--mini</code></div>
</figcaption>
</figure>
<figure>
<button class="mdc-fab demo-fab-icon-size" aria-label="Favorite">
<svg xmlns="http://www.w3.org/2000/svg" class="mdc-fab__icon" viewBox="0 0 24 24" fill="#000000">
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M23 12c0-6.07-4.93-11-11-11S1 5.93 1 12s4.93 11 11 11 11-4.93 11-11zM5 17.64C3.75 16.1 3 14.14 3 12c0-2.13.76-4.08 2-5.63v11.27zM17.64 5H6.36C7.9 3.75 9.86 3 12 3s4.1.75 5.64 2zM12 14.53L8.24 7h7.53L12 14.53zM17 9v8h-4l4-8zm-6 8H7V9l4 8zm6.64 2c-1.55 1.25-3.51 2-5.64 2s-4.1-.75-5.64-2h11.28zM21 12c0 2.14-.75 4.1-2 5.64V6.37c1.24 1.55 2 3.5 2 5.63z"/>
</svg>
</button>
<figcaption>
<div>SVG FAB</div>
</figcaption>
</figure>
</div>
</section>
<section>
<legend>Extended FAB</legend>
<div class="demo-fabs">
<figure class="demo-figure-fab-extended">
<button class="mdc-fab mdc-fab--extended demo-fab-extended-fluid" aria-label="Create">
<span class="material-icons mdc-fab__icon">add</span>
<span class="mdc-fab__label">Create</span>
</button>
<figcaption>
<div>Auto width extended FAB (Responsive)</div>
</figcaption>
</figure>
</div>
<div class="demo-fabs">
<figure class="demo-figure-fab-extended">
<button class="mdc-fab mdc-fab--extended demo-fab-extended-fluid" aria-label="Create">
<span class="mdc-fab__label">Create</span>
<span class="material-icons mdc-fab__icon">add</span>
</button>
<figcaption>
<div>Auto width extended FAB (Text label followed by Icon)</div>
</figcaption>
</figure>
</div>
<div class="demo-fabs">
<figure class="demo-figure-fab-extended">
<button class="mdc-fab mdc-fab--extended demo-fab-extended-without-icon" aria-label="Create">
<span class="mdc-fab__label">Create</span>
</button>
<figcaption>
<div>Extended FAB (without Icon)</div>
</figcaption>
</figure>
</div>
</section>
<section>
<legend>CSS Only FABs</legend>
<div class="demo-fabs">
<figure>
<button class="mdc-fab" aria-label="Favorite" data-demo-no-js>
<span class="mdc-fab__icon material-icons">favorite_border</span>
</button>
</figure>
<figure>
<button class="mdc-fab mdc-fab--mini" aria-label="Favorite" data-demo-no-js>
<span class="mdc-fab__icon material-icons">favorite_border</span>
</button>
</figure>
<figure>
<button class="mdc-fab lightGreen800Fab" aria-label="Favorite" data-demo-no-js>
<span class="mdc-fab__icon material-icons">favorite_border</span>
</button>
</figure>
<figure>
<button class="mdc-fab lightGreen800Fab mdc-fab--mini" aria-label="Favorite" data-demo-no-js>
<span class="mdc-fab__icon material-icons">favorite_border</span>
</button>
</figure>
</div>
</section>
<section>
<legend>Example of Enter and Exit Motions</legend>
<div class="fab-motion-container">
<div class="fab-motion-container__view">
<p>View one (with FAB)</p>
</div>
<div class="fab-motion-container__view fab-motion-container__view--exited">
<p>View two (without FAB)</p>
<p><button type="button" disabled id="enter-exit-back">Go back</button></p>
</div>
<button id="enter-exit-add" class="mdc-fab demo-absolute-fab" aria-label="Add">
<span class="mdc-fab__icon material-icons">add</span>
</button>
</div>
</section>
</main>
<script src="/assets/material-components-web.js" async></script>
<script>
demoReady(function() {
var fabs = document.querySelectorAll('.mdc-fab:not([data-demo-no-js])');
for (var i = 0, fab; fab = fabs[i]; i++) {
mdc.ripple.MDCRipple.attachTo(fab);
}
var addFab = document.getElementById('enter-exit-add');
var VIEW_CLASS = 'fab-motion-container__view';
var enterExitDemoViews = document.querySelectorAll('.' + VIEW_CLASS);
var backButton = document.getElementById('enter-exit-back');
var activeView = 0;
addFab.addEventListener('click', function() {
activeView = 1;
enterExitDemoViews[1].classList.remove(VIEW_CLASS + '--exited');
addFab.classList.add('mdc-fab--exited');
backButton.disabled = false;
// Remove tab stop to ensure exited FAB does not receive keyboard focus
addFab.tabIndex = -1;
});
backButton.addEventListener('click', function() {
activeView = 0;
enterExitDemoViews[1].classList.add(VIEW_CLASS + '--exited');
addFab.classList.remove('mdc-fab--exited');
// Restore tab stop to allow FAB to receive keyboard focus
addFab.tabIndex = 0;
backButton.disabled = true;
});
enterExitDemoViews[1].addEventListener('transitionend', function() {
if (activeView === 0) {
addFab.focus();
} else {
backButton.focus();
}
});
});
</script>
</body>
</html>