制作动画绘制边框可以使用Vanilla JS来实现。以下是一个基本的实现步骤:
<div>
,并为其添加一个CSS类名,用于定义边框样式。<div class="animated-border"></div>
.animated-border {
width: 200px;
height: 200px;
border: 2px solid #000;
position: relative;
overflow: hidden;
}
.animated-border::before {
content: "";
position: absolute;
top: -2px;
left: -2px;
width: 0;
height: 0;
border-top: 2px solid #000;
border-right: 2px solid #000;
transition: width 1s, height 1s, top 0.5s, left 0.5s;
}
.animated-border::after {
content: "";
position: absolute;
bottom: -2px;
right: -2px;
width: 0;
height: 0;
border-bottom: 2px solid #000;
border-left: 2px solid #000;
transition: width 1s, height 1s, bottom 0.5s, right 0.5s;
}
.animated-border:hover::before,
.animated-border:hover::after {
width: 100%;
height: 100%;
}
.animated-border:hover::before {
top: 0;
left: 0;
}
.animated-border:hover::after {
bottom: 0;
right: 0;
}
const element = document.querySelector('.animated-border');
element.classList.add('animated-border');
通过以上步骤,当鼠标悬停在元素上时,将会以动画效果绘制出边框。你可以根据需要调整边框的样式和动画效果。
注意:以上代码只是一个基本示例,你可以根据实际需求进行修改和扩展。
领取专属 10元无门槛券
手把手带您无忧上云