forked from material-components/material-components-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.html
404 lines (371 loc) · 15.9 KB
/
menu.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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
<!DOCTYPE html>
<!--
Copyright 2016 Google Inc. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License
-->
<html>
<head>
<meta charset="utf-8">
<title>Menu - 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/menu.css">
<script src="/ready.js"></script>
<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">
<style>
html,
body,
main {
position: relative;
flex-direction: column;
}
.hero .mdc-menu {
z-index: initial;
}
.demo-content {
position: relative;
top: 64px;
}
.demo-controls-container {
width: 100%;
height: calc(100vh - 80px);
}
.demo-controls {
margin-left: auto;
margin-right: auto;
width: 360px;
}
.mdc-menu-anchor {
position: absolute;
margin: 16px;
}
.margin-inputs input {
width: 2em;
}
.left-column-controls {
display: inline-block;
vertical-align: top;
}
.right-column-controls {
display: inline-block;
margin-left: 2em;
vertical-align: top;
}
.demo-button__normal-text,
.demo-button__long-text {
display: none;
}
.demo-button--normal .demo-button__normal-text,
.demo-button--long .demo-button__normal-text,
.demo-button--long .demo-button__long-text {
display: inline;
}
.demo-menu__long-items,
.demo-menu__extra-long-items {
display: none;
}
.demo-menu--long .demo-menu__long-items,
.demo-menu--extra-long .demo-menu__long-items,
.demo-menu--extra-long .demo-menu__extra-long-items {
display: inline;
}
</style>
</head>
<body class="mdc-typography">
<header class="mdc-toolbar mdc-toolbar--fixed demo-header-toolbar">
<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">Menu</span>
</section>
</div>
</header>
<main>
<div class="mdc-toolbar-fixed-adjust"></div>
<section class="hero">
<div class="mdc-menu mdc-menu--open">
<ul class="mdc-menu__items mdc-list">
<li class="mdc-list-item" role="menuitem">Back</li>
<li class="mdc-list-item" role="menuitem">Forward</li>
<li class="mdc-list-item" role="menuitem">Reload</li>
<li class="mdc-list-divider" role="separator"></li>
<li class="mdc-list-item" role="menuitem">Help & Feedback</li>
<li class="mdc-list-item" role="menuitem">Settings</li>
</ul>
</div>
</section>
<div class="demo-content">
<div id="demo-wrapper">
<div class="mdc-menu-anchor">
<button id="menu-button" class="mdc-button mdc-button--raised demo-button demo-button--normal">
<span>
Show<span class="demo-button__normal-text"> Menu</span><span class="demo-button__long-text"> From Here Now!</span>
</span>
</button>
<div class="mdc-menu" style="position: absolute;" tabindex="-1" id="demo-menu">
<ul class="mdc-menu__items mdc-list" role="menu" aria-hidden="true">
<li class="mdc-list-item" role="menuitem" tabindex="0">Back</li>
<li class="mdc-list-item" role="menuitem" tabindex="0">Forward</li>
<li class="mdc-list-item" role="menuitem" tabindex="0">Reload</li>
<li class="mdc-list-divider" role="separator"></li>
<li class="mdc-list-item" role="menuitem" tabindex="0">Save As...</li>
<li class="mdc-list-item" role="menuitem" tabindex="0">Help</li>
<span class="demo-menu__long-items">
<li class="mdc-list-item" role="menuitem" tabindex="0">Settings</li>
<li class="mdc-list-item" role="menuitem" tabindex="0">Feedback</li>
<li class="mdc-list-item" role="menuitem" tabindex="0">Options...</li>
<li class="mdc-list-item" role="menuitem" tabindex="0">Item 1</li>
<li class="mdc-list-item" role="menuitem" tabindex="0">Item 2</li>
</span>
<span class="demo-menu__extra-long-items">
<li class="mdc-list-item" role="menuitem" tabindex="0">Item 3</li>
<li class="mdc-list-item" role="menuitem" tabindex="0">Item 4</li>
<li class="mdc-list-item" role="menuitem" tabindex="0">Item 5</li>
<li class="mdc-list-item" role="menuitem" tabindex="0">Item 6</li>
<li class="mdc-list-item" role="menuitem" tabindex="0">Item 7</li>
<li class="mdc-list-item" role="menuitem" tabindex="0">Item 8</li>
<li class="mdc-list-item" role="menuitem" tabindex="0">Item 9</li>
</span>
</ul>
</div>
</div>
</div>
<div class="demo-controls-container">
<div class="demo-controls">
<div class="left-column-controls">
Button Position:
<div>
<label><input type="radio" name="position" value="top left" checked> Top left</label>
</div>
<div>
<label><input type="radio" name="position" value="top right"> Top right</label>
</div>
<div>
<label><input type="radio" name="position" value="middle left"> Middle left</label>
</div>
<div>
<label><input type="radio" name="position" value="middle right"> Middle right</label>
</div>
<div>
<label><input type="radio" name="position" value="bottom left"> Bottom left</label>
</div>
<div>
<label><input type="radio" name="position" value="bottom right"> Bottom right</label>
</div>
</div>
<div class="right-column-controls">
Default Menu Position:
<div>
<label><input type="radio" name="menu-position" value="top start" checked> Top start</label>
</div>
<div>
<label><input type="radio" name="menu-position" value="top end"> Top end</label>
</div>
<div>
<label><input type="radio" name="menu-position" value="bottom start"> Bottom start</label>
</div>
<div>
<label><input type="radio" name="menu-position" value="bottom end"> Bottom end</label>
</div>
</div>
<p>
Anchor Margins:
<div id="margin-inputs" class="margin-inputs">
<label>T: <input type="text" id="top-margin" value="0" size="3" max-length="3"></label>
<label>B: <input type="text" id="bottom-margin" value="0" size="3"></label>
<label>L: <input type="text" id="left-margin" value="0" size="3"></label>
<label>R: <input type="text" id="right-margin" value="0" size="3"></label>
</div>
</p>
<div>
<label><input type="checkbox" name="is-rtl"> RTL</label>
</div>
<div>
<label><input type="checkbox" name="remember"> Remember Selected Item</label>
</div>
<div>
<label><input type="checkbox" name="animation"> Disable Open Animation</label>
</div>
<p>
<div class="left-column-controls">
Menu Sizes:
<div>
<label><input type="radio" name="menu-length" value="small" checked> Regular menu</label>
</div>
<div>
<label><input type="radio" name="menu-length" value="large"> Large menu</label>
</div>
<div>
<label><input type="radio" name="menu-length" value="tall"> Extra tall menu</label>
</div>
</div>
<div class="right-column-controls">
Anchor Widths
<div>
<label><input type="radio" name="anchor-width" value="tiny"> Small button</label>
</div>
<div>
<label><input type="radio" name="anchor-width" value="regular" checked> Comparable to menu</label>
</div>
<div>
<label><input type="radio" name="anchor-width" value="wide"> Wider than menu</label>
</div>
</div>
</p>
<hr>
<div>
<span>Last Selected item: <em id="last-selected"><none selected></em></span>
</div>
</div>
</div>
</div>
</main>
<script src="/assets/material-components-web.js" async></script>
<script>
demoReady(function() {
var menuEl = document.querySelector('#demo-menu');
var menu = new mdc.menu.MDCMenu(menuEl);
var menuButtonEl = document.querySelector('#menu-button');
menuButtonEl.addEventListener('click', function() {
menu.open = !menu.open;
});
var remember = document.querySelector('input[name="remember"]');
remember.addEventListener('change', function(evt) {
menu.rememberSelection = evt.target.checked;
});
var animation = document.querySelector('input[name="animation"]');
animation.addEventListener('change', function(evt) {
menu.quickOpen = evt.target.checked;
});
var radios = document.querySelectorAll('input[name="position"]');
var anchor = document.querySelector('.mdc-menu-anchor');
// Initialize to top left.
anchor.style.setProperty('top', '0');
anchor.style.setProperty('left', '0');
for (var i = 0; i < radios.length; i++) {
radios[i].addEventListener('change', function(evt) {
if (evt.target.checked) {
if (evt.target.value) {
anchor.style.removeProperty('top');
anchor.style.removeProperty('right');
anchor.style.removeProperty('bottom');
anchor.style.removeProperty('left');
var vertical = evt.target.value.split(' ')[0];
var horizontal = evt.target.value.split(' ')[1];
if (vertical === 'middle') {
anchor.style.setProperty('top', '35%');
} else {
anchor.style.setProperty(vertical, '0');
}
anchor.style.setProperty(horizontal, '0');
}
}
});
}
radios = document.querySelectorAll('input[name="menu-position"]');
for (var i = 0; i < radios.length; i++) {
radios[i].addEventListener('change', function(evt) {
if (evt.target.checked) {
switch (evt.target.value) {
case "top start":
menu.setAnchorCorner(mdc.menu.MDCMenuFoundation.Corner.TOP_START);
break;
case "bottom start":
menu.setAnchorCorner(mdc.menu.MDCMenuFoundation.Corner.BOTTOM_START);
break;
case "top end":
menu.setAnchorCorner(mdc.menu.MDCMenuFoundation.Corner.TOP_END);
break;
case "bottom end":
menu.setAnchorCorner(mdc.menu.MDCMenuFoundation.Corner.BOTTOM_END);
break;
}
}
});
}
var marginInputsEl = document.querySelector('#margin-inputs');
var inputs = marginInputsEl.querySelectorAll('input[type="text"]');
for (var i = 0; i < inputs.length; i++) {
inputs[i].addEventListener('change', function(evt) {
var topMarginInput = document.getElementById('top-margin');
var bottomMarginInput = document.getElementById('bottom-margin');
var rightMarginInput = document.getElementById('right-margin');
var leftMarginInput = document.getElementById('left-margin');
var margin = {top: parseInt(topMarginInput.value, 10),
right: parseInt(rightMarginInput.value, 10),
bottom: parseInt(bottomMarginInput.value, 10),
left: parseInt(leftMarginInput.value, 10)};
menu.setAnchorMargin(margin);
});
}
var rtl = document.querySelector('input[name="is-rtl"]');
rtl.addEventListener('change', function() {
var demoWrapper = document.getElementById('demo-wrapper');
if (rtl.checked) {
demoWrapper.setAttribute('dir', 'rtl');
} else {
demoWrapper.removeAttribute('dir');
}
});
radios = document.querySelectorAll('input[name="menu-length"]');
for (var i = 0; i < radios.length; i++) {
radios[i].addEventListener('change', function(evt) {
if (evt.target.checked) {
switch (evt.target.value) {
case "small":
menuEl.classList.remove('demo-menu--long');
menuEl.classList.remove('demo-menu--extra-long');
break;
case "large":
menuEl.classList.add('demo-menu--long');
menuEl.classList.remove('demo-menu--extra-long');
break;
case "tall":
menuEl.classList.remove('demo-menu--long');
menuEl.classList.add('demo-menu--extra-long');
break;
}
}
});
}
radios = document.querySelectorAll('input[name="anchor-width"]');
for (var i = 0; i < radios.length; i++) {
radios[i].addEventListener('change', function(evt) {
if (evt.target.checked) {
switch (evt.target.value) {
case "tiny":
menuButtonEl.classList.remove('demo-button--normal');
menuButtonEl.classList.remove('demo-button--long');
break;
case "regular":
menuButtonEl.classList.add('demo-button--normal');
menuButtonEl.classList.remove('demo-button--long');
break;
case "wide":
menuButtonEl.classList.remove('demo-button--normal');
menuButtonEl.classList.add('demo-button--long');
break;
}
}
});
}
var lastSelected = document.getElementById('last-selected');
menuEl.addEventListener('MDCMenu:selected', function(evt) {
var detail = evt.detail;
lastSelected.textContent = '"' + detail.item.textContent.trim() +
'" at index ' + detail.index;
});
});
</script>
</body>
</html>