forked from material-components/material-components-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
icon-button.html
285 lines (269 loc) · 13 KB
/
icon-button.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
277
278
279
280
281
282
283
284
285
<!DOCTYPE html>
<!--
Copyright 2018 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>Icon Button - Material Components Demo</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="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">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.css">
<link rel="stylesheet" href="/assets/icon-button.css">
<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">Icon Buttons</span>
</section>
</div>
</header>
<main>
<div class="mdc-toolbar-fixed-adjust"></div>
<section class="hero">
<div class="demo-wrapper">
<button class="mdc-icon-button"
aria-label="Add to favorites"
aria-pressed="false"
data-demo-toggle>
<i class="material-icons mdc-icon-button__icon mdc-icon-button__icon--on">favorite</i>
<i class="material-icons mdc-icon-button__icon">favorite_border</i>
</button>
</div>
</section>
<section class="example">
<div>
<div>
<h1 class="mdc-typography--headline5">Buttons</h1>
</div>
<div class="toggle-examples-container">
<div class="toggle-example">
<h2 class="mdc-typography--headline6">Material Icons</h2>
<div class="demo-wrapper">
<button class="mdc-icon-button material-icons"
role="button"
aria-label="Add to favorites"
aria-pressed="false">favorite</button>
<button class="mdc-icon-button material-icons"
aria-label="Airplane Mode active"
aria-pressed="false">airplanemode_active</button>
<a href="#"
class="mdc-icon-button material-icons"
aria-label="Transit directions"
aria-pressed="false">directions_transit</a>
</div>
</div>
<div class="toggle-example">
<h2 class="mdc-typography--headline6">SVG Icon</h2>
<div class="demo-wrapper">
<button class="mdc-icon-button"
aria-label="Add to favorites"
aria-pressed="false">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<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>
</div>
</div>
<div class="toggle-example">
<h2 class="mdc-typography--headline6">Disabled Buttons</h2>
<div class="demo-wrapper">
<button class="mdc-icon-button material-icons"
aria-label="Airplane Mode active"
aria-pressed="false"
disabled>airplanemode_active</button>
<button class="mdc-icon-button"
aria-label="Add to favorites"
aria-pressed="false"
disabled>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<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>
</div>
</div>
<div class="toggle-example">
<h2 class="mdc-typography--headline6">Larger Buttons</h2>
<div class="demo-wrapper">
<button class="mdc-icon-button material-icons demo-icon-button-large"
aria-label="Airplane Mode active"
aria-pressed="false">airplanemode_active</button>
<button class="mdc-icon-button demo-icon-button-large"
aria-label="Add to favorites"
aria-pressed="false">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<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>
</div>
</div>
</div>
</div>
</section>
<section class="example">
<div>
<div>
<h1 class="mdc-typography--headline5">Button Toggles</h1>
</div>
<div class="toggle-examples-container">
<div class="toggle-example">
<h2 class="mdc-typography--headline6">Using Material Icons</h2>
<div class="demo-wrapper">
<button
id="add-to-favorites"
class="mdc-icon-button"
aria-label="Add to favorites"
aria-pressed="false"
data-demo-toggle>
<i class="material-icons mdc-icon-button__icon mdc-icon-button__icon--on">favorite</i>
<i class="material-icons mdc-icon-button__icon">favorite_border</i>
</button>
</div>
<p>Favorited? <span id="favorited-status">no</span></p>
</div>
<div class="toggle-example">
<h2 class="mdc-typography--headline6">Using Font Awesome</h2>
<div class="demo-wrapper">
<button class="mdc-icon-button mdc-icon-button--on"
aria-label="Unstar this item"
aria-pressed="true"
data-demo-toggle>
<i class="fa fa-star mdc-icon-button__icon mdc-icon-button__icon--on"></i>
<i class="fa fa-star-o mdc-icon-button__icon"></i>
</button>
</div>
</div>
<div class="toggle-example">
<h2 class="mdc-typography--headline6">Using SVG Icons</h2>
<div class="demo-wrapper">
<button class="mdc-icon-button mdc-icon-button--on"
aria-label="Unstar this item"
aria-pressed="true"
data-demo-toggle>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" class="mdc-icon-button__icon mdc-icon-button__icon--on">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11h-4v4h-2v-4H7v-2h4V7h2v4h4v2z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" class="mdc-icon-button__icon">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"></path>
</svg>
</button>
</div>
</div>
<div class="toggle-example">
<h2 class="mdc-typography--headline6">Using Image Icons</h2>
<div class="demo-wrapper">
<button class="mdc-icon-button mdc-icon-button--on"
aria-label="Unstar this item"
aria-pressed="true"
data-demo-toggle>
<img src="images/ic_button_24px.svg" class="mdc-icon-button__icon mdc-icon-button__icon--on"/>
<img src="images/ic_card_24px.svg" class="mdc-icon-button__icon"/>
</button>
</div>
</div>
<div class="toggle-example">
<h2 class="mdc-typography--headline6">Disabled Icons</h2>
<div class="demo-wrapper">
<button class="mdc-icon-button"
aria-label="Add to favorites"
aria-pressed="false"
data-demo-toggle
disabled>
<i class="material-icons mdc-icon-button__icon mdc-icon-button__icon--on">favorite</i>
<i class="material-icons mdc-icon-button__icon">favorite_border</i>
</button>
</div>
</div>
</div>
<div class="toggle-example">
<h2 class="mdc-typography--headline6">Additional Color Combinations</h2>
<div id="demo-color-combos">
<div id="light-on-bg" class="demo-color-combo">
<div>
<button class="mdc-icon-button mdc-theme--on-primary"
aria-label="Add to favorites"
aria-pressed="false"
data-demo-toggle>
<i class="material-icons mdc-icon-button__icon mdc-icon-button__icon--on">favorite</i>
<i class="material-icons mdc-icon-button__icon">favorite_border</i>
</button>
</div>
<div class="mdc-theme--on-primary">Light icon on background</div>
</div>
<div id="dark-on-bg" class="demo-color-combo">
<div class="mdc-theme--primary">
<button class="mdc-icon-button mdc-icon-button--on"
aria-label="Add to favorites"
aria-pressed="true"
data-demo-toggle>
<i class="material-icons mdc-icon-button__icon mdc-icon-button__icon--on">favorite</i>
<i class="material-icons mdc-icon-button__icon">favorite_border</i>
</button>
</div>
<div>Dark icon on background</div>
</div>
<div id="custom-color-combo" class="demo-color-combo">
<div>
<button class="mdc-icon-button"
aria-label="Add to favorites"
aria-pressed="false"
data-demo-toggle>
<i class="material-icons mdc-icon-button__icon mdc-icon-button__icon--on">favorite</i>
<i class="material-icons mdc-icon-button__icon">favorite_border</i>
</button>
</div>
<div>Custom color</div>
</div>
</div>
</div>
</div>
</section>
</main>
<script src="/assets/material-components-web.js" async></script>
<script src="/assets/common.js" async></script>
<script>
demoReady(function() {
var nodes = document.querySelectorAll('[data-demo-toggle]');
for (var i = 0, node; node = nodes[i]; i++) {
mdc.iconButton.MDCIconButtonToggle.attachTo(node);
}
var buttons = document.querySelectorAll('.mdc-icon-button:not([data-demo-toggle])');
for (var x = 0, button; button = buttons[x]; x++) {
mdc.ripple.MDCRipple.attachTo(button, {isUnbounded: true});
}
var addToFavorites = document.getElementById('add-to-favorites');
var favoritedStatus = document.getElementById('favorited-status');
addToFavorites.addEventListener('MDCIconButtonToggle:change', function(evt) {
var newStatus = evt.detail.isOn ? 'yes' : 'no';
favoritedStatus.textContent = newStatus;
});
});
</script>
</body>
</html>