Skip to content

Instantly share code, notes, and snippets.

@vmarcosp
Created October 18, 2021 18:24
Show Gist options
  • Save vmarcosp/14460c8aa3e20738b9f80c0fcd42f368 to your computer and use it in GitHub Desktop.
Save vmarcosp/14460c8aa3e20738b9f80c0fcd42f368 to your computer and use it in GitHub Desktop.
Animated Spinner - Curso EcmaScript 2077
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" encoding="utf-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="margin: auto; background: none; display: block; shape-rendering: auto;" width="200px" height="200px" viewBox="0 0 100 100" preserveAspectRatio="xMidYMid">
<circle cx="50" cy="50" fill="none" stroke="#ffffff" stroke-width="10" r="35" stroke-dasharray="164.93361431346415 56.97787143782138">
<animateTransform attributeName="transform" type="rotate" repeatCount="indefinite" dur="1s" values="0 50 50;360 50 50" keyTimes="0;1"></animateTransform>
</circle>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment