Blame view

bower_components/paper-spinner/README.md 3.12 KB
73bcce88   luigser   COMPONENTS
1
  
25201c03   Renato De Donato   spinner, geojsonPure
2
  <!---
73bcce88   luigser   COMPONENTS
3
  
25201c03   Renato De Donato   spinner, geojsonPure
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  This README is automatically generated from the comments in these files:
  paper-spinner-behavior.html  paper-spinner-lite.html  paper-spinner.html
  
  Edit those files, and our readme bot will duplicate them over here!
  Edit this file, and the bot will squash your changes :)
  
  The bot does some handling of markdown. Please file a bug if it does the wrong
  thing! https://github.com/PolymerLabs/tedium/issues
  
  -->
  
  [![Build status](https://travis-ci.org/PolymerElements/paper-spinner.svg?branch=master)](https://travis-ci.org/PolymerElements/paper-spinner)
  
  _[Demo and API docs](https://elements.polymer-project.org/elements/paper-spinner)_
  
  
  ##&lt;paper-spinner&gt;
  
  Material design: [Progress & activity](https://www.google.com/design/spec/components/progress-activity.html)
  
  Element providing a multiple color material design circular spinner.
73bcce88   luigser   COMPONENTS
25
  
c5169e0e   Renato De Donato   a new hope
26
27
28
  ```html
  <paper-spinner active></paper-spinner>
  ```
73bcce88   luigser   COMPONENTS
29
30
  
  The default spinner cycles between four layers of colors; by default they are
25201c03   Renato De Donato   spinner, geojsonPure
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
  blue, red, yellow and green. It can be customized to cycle between four different
  colors. Use <paper-spinner-lite> for single color spinners.
  
  ### Accessibility
  
  Alt attribute should be set to provide adequate context for accessibility. If not provided,
  it defaults to 'loading'.
  Empty alt can be provided to mark the element as decorative if alternative content is provided
  in another form (e.g. a text block following the spinner).
  
  ```html
  <paper-spinner alt="Loading contacts list" active></paper-spinner>
  ```
  
  ### Styling
  
  The following custom properties and mixins are available for styling:
  
  | Custom property | Description | Default |
  | --- | --- | --- |
  | `--paper-spinner-layer-1-color` | Color of the first spinner rotation | `--google-blue-500` |
  | `--paper-spinner-layer-2-color` | Color of the second spinner rotation | `--google-red-500` |
  | `--paper-spinner-layer-3-color` | Color of the third spinner rotation | `--google-yellow-500` |
  | `--paper-spinner-layer-4-color` | Color of the fourth spinner rotation | `--google-green-500` |
  | `--paper-spinner-stroke-width` | The width of the spinner stroke | 3px |
  
c5169e0e   Renato De Donato   a new hope
57
  
25201c03   Renato De Donato   spinner, geojsonPure
58
59
60
61
62
63
  
  ##&lt;paper-spinner-lite&gt;
  
  Material design: [Progress & activity](https://www.google.com/design/spec/components/progress-activity.html)
  
  Element providing a single color material design circular spinner.
c5169e0e   Renato De Donato   a new hope
64
65
  
  ```html
25201c03   Renato De Donato   spinner, geojsonPure
66
  <paper-spinner-lite active></paper-spinner-lite>
c5169e0e   Renato De Donato   a new hope
67
  ```
73bcce88   luigser   COMPONENTS
68
  
25201c03   Renato De Donato   spinner, geojsonPure
69
70
71
72
  The default spinner is blue. It can be customized to be a different color.
  
  ### Accessibility
  
73bcce88   luigser   COMPONENTS
73
74
75
76
77
  Alt attribute should be set to provide adequate context for accessibility. If not provided,
  it defaults to 'loading'.
  Empty alt can be provided to mark the element as decorative if alternative content is provided
  in another form (e.g. a text block following the spinner).
  
c5169e0e   Renato De Donato   a new hope
78
  ```html
25201c03   Renato De Donato   spinner, geojsonPure
79
  <paper-spinner-lite alt="Loading contacts list" active></paper-spinner-lite>
c5169e0e   Renato De Donato   a new hope
80
  ```
25201c03   Renato De Donato   spinner, geojsonPure
81
82
83
84
85
86
87
88
89
90
91
92
93
  
  ### Styling
  
  The following custom properties and mixins are available for styling:
  
  | Custom property | Description | Default |
  | --- | --- | --- |
  | `--paper-spinner-color` | Color of the spinner | `--google-blue-500` |
  | `--paper-spinner-stroke-width` | The width of the spinner stroke | 3px |
  
  
  
  <!-- No docs for Polymer.PaperSpinnerBehavior found. -->