纯CSS丝滑边框线条动画(附源码)
效果仅使用CSS实现一种丝滑的边框线条动画效果。关键的实现思路包括:
[*]透视效果:通过设置包含两个嵌套元素,父元素有1像素的padding,从而创建出边框效果。
[*]动画制作:创建一个绝对定位的子元素,使用animation属性让其沿着父元素的边框匀速移动。
[*]匀速动画:通过计算元素移动的路径和距离,调整关键帧百分比,确保动画匀速。
[*]圆角处理:为父元素和子元素添加圆角,并对动画元素进行位置调整,以适应圆角。
[*]动画优化:在圆角处调整动画轨迹,确保过渡自然流畅。
[*]模糊阴影:通过设置子元素的背景径向渐变和使用backdrop-filter属性添加模糊效果,实现阴影效果。
源码
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<style>
body {
background: rgb(9, 9, 11);
}
.container {
position: relative;
width: 400px;
height: 200px;
margin: 50px;
/* 确保有足够空间显示动画 */
border-radius: 30px;
overflow: hidden;
padding: 1px;
}
.element {
background: rgba(9, 9, 11, 0.38);
border: 1px solid rgb(30, 41, 59);
width: 100%;
height: 100%;
border-radius: 30px;
-webkit-backdrop-filter: blur(24px);
backdrop-filter: blur(24px);
box-sizing: border-box;
}
.moving-element {
position: absolute;
top: 0;
left: 40px;
width: 80px;
height: 80px;
background-image: radial-gradient(#cbacf9 40%, transparent 80%);
border-radius: 40px;
animation: moveAround 8s linear infinite;
transform: translate(-40px, -40px);
}
@keyframes moveAround {
0% {
left: 40px;
top: 0px;
}
28.93% {
left: 360px;
top: 0px;
}
33.99% {
left: 400px;
top: 40px;
}
44.82% {
left: 400px;
top: 160px;
}
49.88% {
left: 360px;
top: 200px;
}
78.81% {
left: 40px;
top: 200px;
}
83.87% {
left: 0px;
top: 160px;
}
94.70% {
left: 0px;
top: 40px;
}
100% {
left: 40px;
top: 0px;
}
}
</style>
</head>
<body>
<div class="container">
<div class="moving-element"></div>
<div class="element"></div>
</div>
</body>
</html>
页:
[1]