PluginProbe
Depicter — Popup & Slider Builder / trunk
Depicter — Popup & Slider Builder vtrunk
4.8.1 trunk 1.0.0 1.1.0 1.1.2 1.1.4 1.1.6 1.1.7 1.1.8 1.1.9 1.2.0 1.3.0 1.3.1 1.3.2 1.3.3 1.3.5 1.3.8 1.5.0 1.5.1 1.5.2 1.5.5 1.6.0 1.6.1 1.6.2 1.7.0 All 76 releases
depicter / resources / scripts / loadings / snippets / threeDots / light.html

light.html in Depicter — Popup & Slider Builder trunk, at resources/scripts/loadings/snippets/threeDots/light.html

69 lines 1.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <svg class="depicter-single-svg-loading" viewBox="0 0 120 30" xmlns="http://www.w3.org/2000/svg" fill="#fff">>
2 <circle cx="15" cy="15" r="15">
3 <animate
4 attributeName="r"
5 from="15"
6 to="15"
7 begin="0s"
8 dur="0.8s"
9 values="15;9;15"
10 calcMode="linear"
11 repeatCount="indefinite"
12 />
13 <animate
14 attributeName="fill-opacity"
15 from="1"
16 to="1"
17 begin="0s"
18 dur="0.8s"
19 values="1;.5;1"
20 calcMode="linear"
21 repeatCount="indefinite"
22 />
23 </circle>
24 <circle cx="60" cy="15" r="9" fill-opacity="0.3">
25 <animate
26 attributeName="r"
27 from="9"
28 to="9"
29 begin="0s"
30 dur="0.8s"
31 values="9;15;9"
32 calcMode="linear"
33 repeatCount="indefinite"
34 />
35 <animate
36 attributeName="fill-opacity"
37 from="0.5"
38 to="0.5"
39 begin="0s"
40 dur="0.8s"
41 values=".5;1;.5"
42 calcMode="linear"
43 repeatCount="indefinite"
44 />
45 </circle>
46 <circle cx="105" cy="15" r="15">
47 <animate
48 attributeName="r"
49 from="15"
50 to="15"
51 begin="0s"
52 dur="0.8s"
53 values="15;9;15"
54 calcMode="linear"
55 repeatCount="indefinite"
56 />
57 <animate
58 attributeName="fill-opacity"
59 from="1"
60 to="1"
61 begin="0s"
62 dur="0.8s"
63 values="1;.5;1"
64 calcMode="linear"
65 repeatCount="indefinite"
66 />
67 </circle>
68 </svg>
69