Blame view

bower_components/paper-ripple/demo/index.html 8.92 KB
73bcce88   luigser   COMPONENTS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  <!--
  @license
  Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
  This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
  The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
  The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
  Code distributed by Google as part of the polymer project is also
  subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
  -->
  <!doctype html>
  <html>
  <head>
    <title>paper-ripple demo</title>
  
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
    <meta name="mobile-web-app-capable" content="yes">
    <meta name="apple-mobile-web-app-capable" content="yes">
  
    <script src="../../webcomponentsjs/webcomponents-lite.js"></script>
  
    <link rel="import" href="../../iron-icons/iron-icons.html">
    <link rel="import" href="../paper-ripple.html">
c5169e0e   Renato De Donato   a new hope
23
    <link rel="import" href="../../paper-styles/classes/typography.html">
73bcce88   luigser   COMPONENTS
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
    <link rel="import" href="../../iron-icon/iron-icon.html">
  
    <style>
  
      body {
        background-color: #f9f9f9;
        font-family: RobotoDraft, 'Helvetica Neue', Helvetica, Arial;
        -webkit-tap-highlight-color: rgba(0,0,0,0);
        -webkit-touch-callout: none;
      }
  
      section {
        padding: 30px 25px;
      }
  
      section > * {
        margin: 10px
      }
  
      /* Button */
      .button {
        display: inline-block;
        position: relative;
        width: 120px;
        height: 32px;
        line-height: 32px;
        border-radius: 2px;
        font-size: 0.9em;
        background-color: #fff;
        color: #646464;
      }
  
      .button > paper-ripple {
        border-radius: 2px;
        overflow: hidden;
      }
  
      .button.narrow {
        width: 60px;
      }
  
      .button.grey {
        background-color: #eee;
      }
  
      .button.blue {
        background-color: #4285f4;
        color: #fff;
      }
  
      .button.green {
        background-color: #0f9d58;
        color: #fff;
      }
  
      .button.raised {
        transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        transition-delay: 0.2s;
        box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
      }
  
      .button.raised:active {
        box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
        transition-delay: 0s;
      }
  
      /* Icon Button */
      .icon-button {
        position: relative;
        display: inline-block;
        width: 56px;
        height: 56px;
      }
  
      .icon-button > iron-icon {
        margin: 16px;
        transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
      }
  
      .icon-button:hover > iron-icon {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
      }
  
      .icon-button > paper-ripple {
        overflow: hidden;
        color: #646464;
      }
  
      .icon-button.red > iron-icon::shadow path {
        fill: #db4437;
      }
  
      .icon-button.red > paper-ripple {
        color: #db4437;
      }
  
      .icon-button.blue > iron-icon::shadow path {
        fill: #4285f4;
      }
  
      .icon-button.blue > paper-ripple {
        color: #4285f4;
      }
  
      /* FAB */
      .fab {
        position: relative;
        display: inline-block;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        color: #fff;
        overflow: hidden;
        transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        transition-delay: 0.2s;
        box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
      }
  
      .fab.red {
        background-color: #d23f31;
      }
  
      .fab.blue {
        background-color: #4285f4;
      }
  
      .fab.green {
        background-color: #0f9d58;
      }
  
      .fab:active {
        box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
        transition-delay: 0s;
      }
  
      .fab > iron-icon {
        margin: 16px;
      }
  
      .fab > iron-icon::shadow path {
        fill: #fff;
      }
  
      /* Menu */
      .menu {
        display: inline-block;
        width: 180px;
        background-color: #fff;
        box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
      }
  
      .item {
        position: relative;
        height: 48px;
        line-height: 48px;
        color: #646464;
        font-size: 0.9em;
      }
  
      .menu.blue > .item {
        color: #4285f4;
      }
  
      /* Card, Dialog */
      .card, .dialog {
        position: relative;
        display: inline-block;
        width: 300px;
        height: 240px;
        vertical-align: top;
        background-color: #fff;
        box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24);
      }
  
      .dialog {
        box-sizing: border-box;
        padding: 16px;
      }
  
      .dialog > .content {
        height: 170px;
        font-size: 0.9em;
      }
  
      .dialog > .content > .title {
        font-size: 1.3em;
      }
  
      .dialog > .button {
        width: 90px;
        float: right;
      }
  
      .card.image {
        background: url(http://lorempixel.com/300/240/nature/);
        color: #fff;
      }
  
      /* Misc */
      .center {
        text-align: center;
      }
  
      .label {
        padding: 0 16px;
      }
  
      .label-blue {
        color: #4285f4;
      }
  
      .label-red {
        color: #d23f31;
      }
  
    </style>
  
  </head>
  <body>
  
    <section>
  
      <div class="button raised">
c5169e0e   Renato De Donato   a new hope
249
        <div class="center" fit>SUBMIT</div>
73bcce88   luigser   COMPONENTS
250
251
252
        <paper-ripple></paper-ripple>
      </div>
  
eb240478   Luigi Serra   public room cards...
253
      <div class="button raised" noink>
c5169e0e   Renato De Donato   a new hope
254
        <div class="center" fit>NO INK</div>
eb240478   Luigi Serra   public room cards...
255
256
257
        <paper-ripple noink></paper-ripple>
      </div>
  
73bcce88   luigser   COMPONENTS
258
      <div class="button raised grey">
c5169e0e   Renato De Donato   a new hope
259
        <div class="center" fit>CANCEL</div>
73bcce88   luigser   COMPONENTS
260
261
262
263
        <paper-ripple></paper-ripple>
      </div>
  
      <div class="button raised blue">
c5169e0e   Renato De Donato   a new hope
264
        <div class="center" fit>COMPOSE</div>
73bcce88   luigser   COMPONENTS
265
266
267
268
        <paper-ripple></paper-ripple>
      </div>
  
      <div class="button raised green">
c5169e0e   Renato De Donato   a new hope
269
        <div class="center" fit>OK</div>
73bcce88   luigser   COMPONENTS
270
271
272
273
274
275
276
277
        <paper-ripple></paper-ripple>
      </div>
  
    </section>
  
    <section>
  
      <div class="button raised grey narrow">
c5169e0e   Renato De Donato   a new hope
278
        <div class="center" fit>+1</div>
73bcce88   luigser   COMPONENTS
279
280
281
282
        <paper-ripple></paper-ripple>
      </div>
  
      <div class="button raised grey narrow label-blue">
c5169e0e   Renato De Donato   a new hope
283
        <div class="center" fit>+1</div>
73bcce88   luigser   COMPONENTS
284
285
286
287
        <paper-ripple></paper-ripple>
      </div>
  
      <div class="button raised grey narrow label-red">
c5169e0e   Renato De Donato   a new hope
288
        <div class="center" fit>+1</div>
73bcce88   luigser   COMPONENTS
289
290
291
292
293
294
295
296
        <paper-ripple></paper-ripple>
      </div>
  
    </section>
  
    <section>
  
      <div class="icon-button">
c5169e0e   Renato De Donato   a new hope
297
        <iron-icon icon="menu"></iron-icon>
73bcce88   luigser   COMPONENTS
298
299
300
301
        <paper-ripple class="circle" recenters></paper-ripple>
      </div>
  
      <div class="icon-button">
c5169e0e   Renato De Donato   a new hope
302
        <iron-icon icon="more-vert"></iron-icon>
73bcce88   luigser   COMPONENTS
303
304
305
306
        <paper-ripple class="circle" recenters></paper-ripple>
      </div>
  
      <div class="icon-button red">
c5169e0e   Renato De Donato   a new hope
307
        <iron-icon icon="delete"></iron-icon>
73bcce88   luigser   COMPONENTS
308
309
310
311
        <paper-ripple class="circle" recenters></paper-ripple>
      </div>
  
      <div class="icon-button blue">
c5169e0e   Renato De Donato   a new hope
312
        <iron-icon icon="account-box"></iron-icon>
73bcce88   luigser   COMPONENTS
313
314
315
316
317
318
319
320
        <paper-ripple class="circle" recenters></paper-ripple>
      </div>
  
    </section>
  
    <section>
  
      <div class="fab red">
c5169e0e   Renato De Donato   a new hope
321
        <iron-icon icon="add"></iron-icon>
73bcce88   luigser   COMPONENTS
322
323
324
325
        <paper-ripple class="circle" recenters></paper-ripple>
      </div>
  
      <div class="fab blue">
c5169e0e   Renato De Donato   a new hope
326
        <iron-icon icon="mail"></iron-icon>
73bcce88   luigser   COMPONENTS
327
328
329
330
        <paper-ripple class="circle" recenters></paper-ripple>
      </div>
  
      <div class="fab green">
c5169e0e   Renato De Donato   a new hope
331
        <iron-icon icon="create"></iron-icon>
73bcce88   luigser   COMPONENTS
332
333
334
335
336
337
338
339
340
341
        <paper-ripple class="circle" recenters></paper-ripple>
      </div>
  
    </section>
  
    <section>
  
      <div class="menu">
  
        <div class="item">
c5169e0e   Renato De Donato   a new hope
342
          <div class="label" fit>Mark as unread</div>
73bcce88   luigser   COMPONENTS
343
344
345
          <paper-ripple></paper-ripple>
        </div>
        <div class="item">
c5169e0e   Renato De Donato   a new hope
346
          <div class="label" fit>Mark as important</div>
73bcce88   luigser   COMPONENTS
347
348
349
          <paper-ripple></paper-ripple>
        </div>
        <div class="item">
c5169e0e   Renato De Donato   a new hope
350
          <div class="label" fit>Add to Tasks</div>
73bcce88   luigser   COMPONENTS
351
352
353
          <paper-ripple></paper-ripple>
        </div>
        <div class="item">
c5169e0e   Renato De Donato   a new hope
354
          <div class="label" fit>Create event</div>
73bcce88   luigser   COMPONENTS
355
356
357
358
359
360
361
362
          <paper-ripple></paper-ripple>
        </div>
  
      </div>
  
      <div class="menu blue">
  
        <div class="item">
c5169e0e   Renato De Donato   a new hope
363
          <div class="label" fit>Import</div>
73bcce88   luigser   COMPONENTS
364
365
366
          <paper-ripple></paper-ripple>
        </div>
        <div class="item">
c5169e0e   Renato De Donato   a new hope
367
          <div class="label" fit>Export</div>
73bcce88   luigser   COMPONENTS
368
369
370
          <paper-ripple></paper-ripple>
        </div>
        <div class="item">
c5169e0e   Renato De Donato   a new hope
371
          <div class="label" fit>Print</div>
73bcce88   luigser   COMPONENTS
372
373
374
          <paper-ripple></paper-ripple>
        </div>
        <div class="item">
c5169e0e   Renato De Donato   a new hope
375
          <div class="label" fit>Restore contacts</div>
73bcce88   luigser   COMPONENTS
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
          <paper-ripple></paper-ripple>
        </div>
  
      </div>
  
    </section>
  
    <section>
  
      <div class="dialog">
  
        <div class="content">
          <div class="title">Permission</div><br>
          <div>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.</div>
        </div>
  
        <div class="button label-blue">
c5169e0e   Renato De Donato   a new hope
393
          <div class="center" fit>ACCEPT</div>
73bcce88   luigser   COMPONENTS
394
395
396
397
          <paper-ripple></paper-ripple>
        </div>
  
        <div class="button">
c5169e0e   Renato De Donato   a new hope
398
          <div class="center" fit>DECLINE</div>
73bcce88   luigser   COMPONENTS
399
400
401
402
403
          <paper-ripple></paper-ripple>
        </div>
  
      </div>
  
c5169e0e   Renato De Donato   a new hope
404
      <div class="card">
73bcce88   luigser   COMPONENTS
405
406
407
        <paper-ripple recenters></paper-ripple>
      </div>
  
c5169e0e   Renato De Donato   a new hope
408
409
      <div class="card image">
  
73bcce88   luigser   COMPONENTS
410
        <paper-ripple recenters></paper-ripple>
c5169e0e   Renato De Donato   a new hope
411
  
73bcce88   luigser   COMPONENTS
412
413
414
415
416
417
      </div>
  
    </section>
  
  </body>
  </html>
c5169e0e   Renato De Donato   a new hope