A little test interaction for an upcoming web project. Enjoy the bounce!
-
-
Save CodeMyUI/f3a3cf6f0ffcd7f5caf2 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
<div class='container'> | |
<a href='#'class='playBut'> | |
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In --> | |
<svg version="1.1" | |
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/" | |
x="0px" y="0px" width="213.7px" height="213.7px" viewBox="0 0 213.7 213.7" enable-background="new 0 0 213.7 213.7" | |
xml:space="preserve"> | |
<polygon class='triangle' id="XMLID_18_" fill="none" stroke-width="7" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points=" | |
73.5,62.5 148.5,105.8 73.5,149.1 "/> | |
<circle class='circle' id="XMLID_17_" fill="none" stroke-width="7" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="106.8" cy="106.8" r="103.3"/> | |
</svg> | |
</a> | |
</div> |
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
.container { | |
width: 100%; | |
text-align: center; | |
margin-top: 25vh; | |
} | |
.circle { | |
stroke: #f8aa28; | |
stroke-dasharray: 650; | |
stroke-dashoffset: 650; | |
-webkit-transition: all 0.5s ease-in-out; | |
opacity: 0.3; | |
} | |
.playBut { | |
/* border: 1px solid red;*/ | |
display: inline-block; | |
-webkit-transition: all 0.5s ease; | |
.triangle { | |
-webkit-transition: all 0.7s ease-in-out; | |
stroke-dasharray: 240; | |
stroke-dashoffset: 480; | |
stroke: #000; | |
transform: translateY(0) | |
} | |
&:hover { | |
.triangle { | |
stroke-dashoffset: 0; | |
opacity: 1; | |
stroke: #f8aa28; | |
animation: nudge 0.7s ease-in-out; | |
@keyframes nudge{ | |
0% { | |
transform: translateX(0) | |
} | |
30% { | |
transform: translateX(-5px) | |
} | |
50% { | |
transform: translateX(5px) | |
} | |
70% { | |
transform: translateX(-2px) | |
} | |
100% { | |
transform: translateX(0) | |
} | |
} | |
} | |
.circle { | |
stroke-dashoffset: 0; | |
opacity: 1; | |
} | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment