|
@@ -0,0 +1,26 @@
|
|
|
|
+<style>
|
|
|
|
+ img.loading-image {
|
|
|
|
+ -webkit-animation: spin 2s linear infinite;
|
|
|
|
+ animation: spin 2s linear infinite;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @-webkit-keyframes spin {
|
|
|
|
+ 0% {
|
|
|
|
+ -webkit-transform: rotate(0deg);
|
|
|
|
+ }
|
|
|
|
+ 100% {
|
|
|
|
+ -webkit-transform: rotate(360deg);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @keyframes spin {
|
|
|
|
+ 0% {
|
|
|
|
+ transform: rotate(0deg);
|
|
|
|
+ }
|
|
|
|
+ 100% {
|
|
|
|
+ transform: rotate(360deg);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+</style>
|
|
|
|
+
|
|
|
|
+<img class="loading-image" src="{{loadingImage}}">
|