diff options
author | mayx | 2022-01-04 20:42:55 +0800 |
---|---|---|
committer | mayx | 2022-01-04 20:42:55 +0800 |
commit | f4aa957c53cda659d026ffd23856f65a72fee739 (patch) | |
tree | afc51b78e1ff241c955ca30910e895e02e0a1d22 /images/loading.svg |
Restore deleted repositories
Diffstat (limited to 'images/loading.svg')
-rw-r--r-- | images/loading.svg | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/images/loading.svg b/images/loading.svg new file mode 100644 index 0000000..5291869 --- /dev/null +++ b/images/loading.svg @@ -0,0 +1,55 @@ +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50" class="m-loading-icon m-loading-wipe"> + <defs> + <style> + .m-loading-icon { + stroke: #343640; + stroke-width: 3.5; + stroke-linecap: round; + background: none; + vertical-align: middle; + } + .m-loading-icon .m-loading-icon-bg-path{ + fill: none; + stroke: #F2F2F2; + } + .m-loading-icon .m-loading-icon-active-path{ + fill: none; + stroke: #666666; + transform-origin: 50% 50%; + } + .m-loading-wipe .m-loading-icon-active-path{ + stroke-dasharray: 90, 150; + stroke-dashoffset: 0; + animation: loading-wipe 1.5s ease-in-out infinite, loading-rotate 2s linear infinite; + } + .m-loading-default .m-loading-icon-active-path{ + stroke-dasharray: 60, 150; + animation: loading-rotate 0.8s linear infinite; + } + @keyframes loading-rotate{ + to{transform:rotate(1turn)} + } + @keyframes loading-wipe{ + 0%{ + stroke-dasharray:1,200; + stroke-dashoffset:0; + } + 50%{ + stroke-dasharray:90,150; + stroke-dashoffset:-40px; + } + to{ + stroke-dasharray:90,150; + stroke-dashoffset:-120px; + } + } + </style> + </defs> + <title>loading</title> + <g> + <g> + <circle cx="25" cy="25" r="20" class="m-loading-icon-bg-path"></circle> + <circle cx="25" cy="25" r="20" class="m-loading-icon-active-path"></circle> + </g> + </g> +</svg> |