| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 @license | 2 @license |
| 3 Copyright (c) 2015 The Polymer Project Authors. All rights reserved. | 3 Copyright (c) 2015 The Polymer Project Authors. All rights reserved. |
| 4 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt | 4 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt |
| 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt | 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt |
| 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt | 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt |
| 7 Code distributed by Google as part of the polymer project is also | 7 Code distributed by Google as part of the polymer project is also |
| 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt | 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt |
| 9 --><html><head><link rel="import" href="../polymer/polymer.html"> | 9 --><html><head><link rel="import" href="../polymer/polymer.html"> |
| 10 <link rel="import" href="../iron-flex-layout/iron-flex-layout.html"> | 10 <link rel="import" href="../iron-flex-layout/iron-flex-layout.html"> |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 `--paper-spinner-layer-4-color` | Color of the fourth spinner rotation | `--goog
le-green-500` | 44 `--paper-spinner-layer-4-color` | Color of the fourth spinner rotation | `--goog
le-green-500` |
| 45 `--paper-spinner-stroke-width` | The width of the spinner stroke | 3px | 45 `--paper-spinner-stroke-width` | The width of the spinner stroke | 3px |
| 46 | 46 |
| 47 @group Paper Elements | 47 @group Paper Elements |
| 48 @element paper-spinner | 48 @element paper-spinner |
| 49 @hero hero.svg | 49 @hero hero.svg |
| 50 @demo demo/index.html | 50 @demo demo/index.html |
| 51 --> | 51 --> |
| 52 | 52 |
| 53 </head><body><dom-module id="paper-spinner"> | 53 </head><body><dom-module id="paper-spinner"> |
| 54 <template> | 54 <template strip-whitespace=""> |
| 55 <style include="paper-spinner-styles"></style> | 55 <style include="paper-spinner-styles"></style> |
| 56 | 56 |
| 57 <div id="spinnerContainer" class-name="[[__computeContainerClasses(active, _
_coolingDown)]]"> | 57 <div id="spinnerContainer" class-name="[[__computeContainerClasses(active, _
_coolingDown)]]"> |
| 58 <div class="spinner-layer layer-1"> | 58 <div class="spinner-layer layer-1"> |
| 59 <div class="circle-clipper left"> | 59 <div class="circle-clipper left"></div> |
| 60 <div class="circle"></div> | 60 <div class="circle-clipper right"></div> |
| 61 </div><div class="gap-patch"> | |
| 62 <div class="circle"></div> | |
| 63 </div><div class="circle-clipper right"> | |
| 64 <div class="circle"></div> | |
| 65 </div> | |
| 66 </div> | 61 </div> |
| 67 | 62 |
| 68 <div class="spinner-layer layer-2"> | 63 <div class="spinner-layer layer-2"> |
| 69 <div class="circle-clipper left"> | 64 <div class="circle-clipper left"></div> |
| 70 <div class="circle"></div> | 65 <div class="circle-clipper right"></div> |
| 71 </div><div class="gap-patch"> | |
| 72 <div class="circle"></div> | |
| 73 </div><div class="circle-clipper right"> | |
| 74 <div class="circle"></div> | |
| 75 </div> | |
| 76 </div> | 66 </div> |
| 77 | 67 |
| 78 <div class="spinner-layer layer-3"> | 68 <div class="spinner-layer layer-3"> |
| 79 <div class="circle-clipper left"> | 69 <div class="circle-clipper left"></div> |
| 80 <div class="circle"></div> | 70 <div class="circle-clipper right"></div> |
| 81 </div><div class="gap-patch"> | |
| 82 <div class="circle"></div> | |
| 83 </div><div class="circle-clipper right"> | |
| 84 <div class="circle"></div> | |
| 85 </div> | |
| 86 </div> | 71 </div> |
| 87 | 72 |
| 88 <div class="spinner-layer layer-4"> | 73 <div class="spinner-layer layer-4"> |
| 89 <div class="circle-clipper left"> | 74 <div class="circle-clipper left"></div> |
| 90 <div class="circle"></div> | 75 <div class="circle-clipper right"></div> |
| 91 </div><div class="gap-patch"> | |
| 92 <div class="circle"></div> | |
| 93 </div><div class="circle-clipper right"> | |
| 94 <div class="circle"></div> | |
| 95 </div> | |
| 96 </div> | 76 </div> |
| 97 </div> | 77 </div> |
| 98 </template> | 78 </template> |
| 99 | 79 |
| 100 </dom-module> | 80 </dom-module> |
| 101 <script src="paper-spinner-extracted.js"></script></body></html> | 81 <script src="paper-spinner-extracted.js"></script></body></html> |
| OLD | NEW |