Last active
November 21, 2019 16:26
-
-
Save sliceofbytes/15560de926efbd8e1ce52730c0ad5bae to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <svg xmlns="http://www.w3.org/2000/svg" xml:lang="en" | |
| xmlns:xlink="http://www.w3.org/1999/xlink" | |
| width="200px" height="200px" viewBox="0 0 40 40"> | |
| <title>Basic Markers</title> | |
| <circle fill="orange" cy="100" r="20"> | |
| <animate attributeName="cx" from="250" to="50" | |
| dur="5s" repeatCount="indefinite" /> | |
| </circle> | |
| <circle fill="blue" cx="150" cy="100" r="50" /> | |
| <circle fill="orange" cy="100" r="20"> | |
| <animate attributeName="cx" from="50" to="250" | |
| dur="5s" repeatCount="indefinite" /> | |
| </circle> | |
| </svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment