Added loading animation

This commit is contained in:
Florian SYLVAIN
2021-10-29 15:48:51 +02:00
parent a1a830a03b
commit fcce86dc8b
3 changed files with 95 additions and 2 deletions
+17
View File
@@ -20,6 +20,23 @@
}
}
?>
<!-- La petite animation de chargement provient de :
https://freefrontend.com/css-spinners/
Réalisée par Jon Marron -->
<div class="loader">
<svg viewBox="0 0 120 120" xmlns="http://www.w3.org/2000/svg">
<circle class="load one" cx="60" cy="60" r="40" />
<circle class="load two" cx="60" cy="60" r="40" />
<circle class="load three" cx="60" cy="60" r="40" />
<g>
<circle class="point one" cx="45" cy="70" r="5" />
<circle class="point two" cx="60" cy="70" r="5" />
<circle class="point three" cx="75" cy="70" r="5" />
</g>
</svg>
</div>
<div id="results-count"></div>
<div id="results"></div>
</body>