<div style="display: flex; flex-direction: column; justify-content: center; align-items: center;">
<span>Hover</span>
<span>pengfeixc.com</span>
</div>
div {
display: flex;
align-items: center;
justify-content: center;
position: relative;
margin: 20px auto;
width: 250px;
height: 250px;
background: white;
border-radius: 75px;
font-family: "Montserrat", sans-serif;
font-size: 20px;
font-weight: lighter;
letter-spacing: 2px;
transition: 1s box-shadow;
}
div:hover {
box-shadow: 0 5px 35px 0px rgba(0, 0, 0, 0.1);
}
div:hover::before,
div:hover::after {
display: block;
content: "";
position: absolute;
width: 250px;
height: 250px;
background: #fda8cf;
border-radius: 75px;
z-index: -1;
animation: 1s clockwise infinite;
}
div:hover:after {
background: #58cef1;
animation: 2s counterclockwise infinite;
}
@keyframes clockwise {
0% {
top: -5px;
left: 0;
}
12% {
top: -2px;
left: 2px;
}
25% {
top: 0;
left: 5px;
}
37% {
top: 2px;
left: 2px;
}
50% {
top: 5px;
left: 0;
}
62% {
top: 2px;
left: -2px;
}
75% {
top: 0;
left: -5px;
}
87% {
top: -2px;
left: -2px;
}
100% {
top: -5px;
left: 0;
}
}
@keyframes counterclockwise {
0% {
top: -5px;
right: 0;
}
12% {
top: -2px;
right: 2px;
}
25% {
top: 0;
right: 5px;
}
37% {
top: 2px;
right: 2px;
}
50% {
top: 5px;
right: 0;
}
62% {
top: 2px;
right: -2px;
}
75% {
top: 0;
right: -5px;
}
87% {
top: -2px;
right: -2px;
}
100% {
top: -5px;
right: 0;
}
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.