I'm trying to animate a border in css3 to have a drawing effect (loops round from right to left)
At the moment I just have it so it fades in on hover
.info-circle-sub-def{
border: 1px solid #111111;
border-radius: 50%;
}
.info-circle-sub-def:hover{
animation: drawBorder 2s forwards;
}
@keyframes drawBorder {
to {
border: 1px solid #d6a318;
}
}
image of golden border
Check this quick pen I just made. You can edit for your needs.
pen examplehttps://codepen.io/stojko/pen/YZgByQ
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With