<div class="both">Both</div>
<div class="rectangle">Rectangle</div>
<div class="circle">Circle</div>
body {
background: #fff;
}
div {
position: relative;
width: 200px;
height: 64px;
line-height: 64px;
box-shadow: inset 0 0 0 3px #ddd;
margin: 50px auto;
text-align: center;
color: #333;
font-size: 16px;
cursor: pointer;
transition: color 1s;
overflow: hidden;
}
div::before,
div::after {
content: "";
position: absolute;
width: 0;
height: 0;
top: 0;
left: 0;
box-sizing: border-box;
// transition: width .5s, height .5s;
// transition-delay: .5s, 0s;
border: 3px solid transparent;
}
.both:hover {
color: #00e2ff;
&::before {
transition: width .5s, height .5s, border-bottom-color 0s;
transition-delay: .5s, 0s, .5s;
width: 200px;
height: 64px;
border-left: 3px solid #00e2ff;
border-bottom: 3px solid #00e2ff;
}
&::after {
transition: width .5s, height .5s, border-right-color .5s;
transition-delay: 0s, .5s, .5s;
width: 200px;
height: 64px;
border-top: 3px solid #00e2ff;
border-right: 3px solid #00e2ff;
}
}
.rectangle {
&::after {
top: unset;
left: unset;
right: 0;
bottom: -6px;
}
&:hover {
// color: #00e2ff;
&::before {
transition: height .25s, width .25s, border-bottom-color .25s;
transition-delay: 0s, .25s, .25s;
width: 200px;
height: 64px;
border-left: 3px solid #00e2ff;
border-bottom: 3px solid #00e2ff;
}
&::after {
transition: width .25s, height .25s, border-top-color .25s;
transition-delay: 0.75s, 0.5s, 0.75s;
width: 200px;
height: 70px;
border-top: 3px solid #00e2ff;
border-right: 3px solid #00e2ff;
}
}
}
.circle {
width: 120px;
height: 120px;
line-height: 120px;
border-radius: 50%;
&::before,
&::after{
border-radius: 50%;
}
&:hover {
color: #00e2ff;
&::before {
width: 120px;
height: 120px;
border-color: #00e2ff;
transition: border-top-color .25s linear,
border-right-color .25s linear,
border-bottom-color .25s linear,
border-left-color .25s linear;
transition-delay: 0s, .25s, .5s, .75s;
}
&::after {
width: 120px;
height: 120px;
border-top: 3px solid #00e2ff;
transform: rotate(270deg);
transition: transform .75s linear;
transition-delay: 0s;
}
}
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.