Blame view

bower_components/paper-spinner/demo/index.html 2.91 KB
73bcce88   luigser   COMPONENTS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  <!doctype html>
  <!--
  @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
  -->
  <html lang="en">
  
    <head>
      <meta charset="UTF-8">
      <title>paper-spinner demo</title>
      <script src="../../webcomponentsjs/webcomponents-lite.js"></script>
      <link rel="import" href="../../paper-styles/demo-pages.html">
      <link rel="import" href="../paper-spinner.html">
a1a3bc73   Luigi Serra   graphs updates
19
      <link rel="import" href="../paper-spinner-lite.html">
73bcce88   luigser   COMPONENTS
20
21
22
23
24
25
  
      <style is="custom-style">
        .horizontal-section {
          width: 100px;
        }
  
a1a3bc73   Luigi Serra   graphs updates
26
        paper-spinner, paper-spinner-lite, button {
73bcce88   luigser   COMPONENTS
27
28
29
30
31
32
          display: block;
          margin-bottom: 24px;
          margin-left: auto;
          margin-right: auto;
        }
  
a1a3bc73   Luigi Serra   graphs updates
33
34
35
36
37
        paper-spinner.multi {
          --paper-spinner-layer-1-color: var(--paper-purple-500);
          --paper-spinner-layer-2-color: var(--paper-cyan-500);
          --paper-spinner-layer-3-color: var(--paper-blue-grey-500);
          --paper-spinner-layer-4-color: var(--paper-amber-500);
73bcce88   luigser   COMPONENTS
38
39
        }
  
a1a3bc73   Luigi Serra   graphs updates
40
41
        paper-spinner-lite.red {
          --paper-spinner-color: var(--google-red-500);
73bcce88   luigser   COMPONENTS
42
43
        }
  
a1a3bc73   Luigi Serra   graphs updates
44
45
        paper-spinner-lite.orange {
          --paper-spinner-color: var(--google-yellow-500);
73bcce88   luigser   COMPONENTS
46
47
        }
  
a1a3bc73   Luigi Serra   graphs updates
48
49
        paper-spinner-lite.green {
          --paper-spinner-color: var(--google-green-500);
73bcce88   luigser   COMPONENTS
50
51
52
53
54
55
56
        }
      </style>
    </head>
  
    <body unresolved>
      <div class="horizontal-section-container">
        <div>
a1a3bc73   Luigi Serra   graphs updates
57
          <h4>&lt;paper-spinner&gt;</h4>
73bcce88   luigser   COMPONENTS
58
59
60
          <div class="horizontal-section">
            <paper-spinner></paper-spinner>
            <paper-spinner active></paper-spinner>
a1a3bc73   Luigi Serra   graphs updates
61
62
            <paper-spinner class="multi"></paper-spinner>
            <paper-spinner class="multi" active></paper-spinner>
73bcce88   luigser   COMPONENTS
63
64
65
66
67
            <button onclick="toggle(event)">Toggle</button>
          </div>
        </div>
  
        <div>
a1a3bc73   Luigi Serra   graphs updates
68
          <h4>&lt;paper-spinner-lite&gt;</h4>
73bcce88   luigser   COMPONENTS
69
          <div class="horizontal-section">
a1a3bc73   Luigi Serra   graphs updates
70
71
72
73
            <paper-spinner-lite active></paper-spinner-lite>
            <paper-spinner-lite class="red" active></paper-spinner-lite>
            <paper-spinner-lite class="orange" active></paper-spinner-lite>
            <paper-spinner-lite class="green" active></paper-spinner-lite>
73bcce88   luigser   COMPONENTS
74
75
76
77
78
79
80
            <button onclick="toggle(event)">Toggle</button>
          </div>
        </div>
      </div>
  
      <script>
        function toggle(event) {
a1a3bc73   Luigi Serra   graphs updates
81
          var spinners = event.target.parentElement.querySelectorAll('paper-spinner, paper-spinner-lite');
73bcce88   luigser   COMPONENTS
82
83
84
85
86
87
88
89
          Array.prototype.forEach.call(spinners, function(spinner) {
            spinner.active = !spinner.active;
          });
        };
      </script>
    </body>
  
  </html>