OLD | NEW |
1 <svg version="1" xmlns="http://www.w3.org/2000/svg" | 1 <svg version="1" xmlns="http://www.w3.org/2000/svg" |
2 xmlns:xlink="http://www.w3.org/1999/xlink" | 2 xmlns:xlink="http://www.w3.org/1999/xlink" |
3 width="16px" height="16px" viewBox="0 0 28 28"> | 3 width="16px" height="16px" viewBox="0 0 28 28"> |
4 <!-- 28= RADIUS*2 + STROKEWIDTH --> | 4 <!-- 28= RADIUS*2 + STROKEWIDTH --> |
5 | 5 |
6 <title>Material design circular activity spinner with CSS3 animation</title> | 6 <title>Material design circular activity spinner with CSS3 animation</title> |
7 <style type="text/css"> | 7 <style type="text/css"> |
8 /**************************/ | 8 /**************************/ |
9 /* STYLES FOR THE SPINNER */ | 9 /* STYLES FOR THE SPINNER */ |
10 /**************************/ | 10 /**************************/ |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 <!-- 12.5= RADIUS --> | 97 <!-- 12.5= RADIUS --> |
98 <!-- 1.5= STROKEWIDTH/2 --> | 98 <!-- 1.5= STROKEWIDTH/2 --> |
99 <!-- ARCSIZE would affect the 1.5,14 part of this... 1.5,14 is specific to | 99 <!-- ARCSIZE would affect the 1.5,14 part of this... 1.5,14 is specific to |
100 270 degress --> | 100 270 degress --> |
101 <g class="qp-circular-loader"> | 101 <g class="qp-circular-loader"> |
102 <path class="qp-circular-loader-path" fill="none" | 102 <path class="qp-circular-loader-path" fill="none" |
103 d="M 14,1.5 A 12.5,12.5 0 1 1 1.5,14" stroke-width="3" | 103 d="M 14,1.5 A 12.5,12.5 0 1 1 1.5,14" stroke-width="3" |
104 stroke-linecap="round"></path> | 104 stroke-linecap="round"></path> |
105 </g> | 105 </g> |
106 </svg> | 106 </svg> |
OLD | NEW |