Last active
September 26, 2021 19:57
-
-
Save kissarat/323ca5193f6f9a5f34217e7d1b5b1bac to your computer and use it in GitHub Desktop.
This file contains 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
<?xml version="1.0" standalone="no"?> | |
<svg | |
xmlns="http://www.w3.org/2000/svg" | |
viewBox="0 0 1000 450" | |
width="1000" | |
height="450" | |
version="1.1" | |
id="canvas" | |
class="canvas" | |
> | |
<style> | |
rect { | |
opacity: 1; | |
transition: opacity 400ms; | |
} | |
rect:hover { | |
opacity: 0; | |
} | |
</style> | |
<circle cx="455" cy="225" r="50" fill="red" /> | |
<circle cx="495" cy="225" r="30" fill="green" /> | |
<circle cx="495" cy="185" r="30" fill="blue" /> | |
<rect x="0.5cm" y="0.5cm" width="2cm" height="1cm" /> | |
<rect x="0.5cm" y="2cm" width="1cm" height="1.5cm"/> | |
</svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment