就是做一个一条线在周围转啊转的效果
我的效果: 大概思路是四条线,在周围一直走。
写在前面
兄弟们,别光收藏,点个赞👍👍👍啊🤣,beiwei(csdn居然认为这个词语是敏感词😑)求赞
如果你想要的更多边框特效,这里还有
有趣的CSS | css-border特效(转动边框,彩虹边框,渐变边框)和css变量⇲
参考:传送门⇲
上面的效果大家f12就知道怎么做了
写在后面
另外还有下面这种效果。传送门⇲
另外鼠标划入特效。传送门
在线预览 源码下载
当然还有一些 花里花哨的效果,可做学习css3用(审查元素查看css样式文件,都是比较基础的东西)
以上特效,大家f12均可查看实现方式,甚至有的可以下载源码。
下面我把我做的边框流光特效实现贴出来,以便日后 ctrl CV
text
1
2
3
4
5
6
7
8
<li v-for="(item,index) in indoorParams" :key="index">
//其他代码。。。
<div class="animate-border">
<i></i>
<i></i>
</div>
</li>
text
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<style lang="scss">
ol li{
/* border: 1px solid rgba(32,254,255,.3); */
/* 宽高和相对定位是一定要给的,因为这会影响.animate-border子元素的定位 */
position: relative;
width: 3rem;
height: 5rem;
overflow: hidden;
/* 利用伪元素和两个i元素产生4条线 */
.animate-border{
position: absolute;
top: 0;
width: 100%;
height: 100%;
&::before, &::after{
content: "";
position: absolute;
width: 100%;
height: 1px;
}
i {
position: absolute;
display: inline-block;
height: 100%;
width: 1px;
}
&::before{
top: 0;
left: -100%;
background-image: linear-gradient(90deg,transparent,#03e9f4);
/* name duration timing-function delay iteration-count diraction */
animation: one 4s linear infinite;
}
i:nth-child(1){
top: -100%;
right: 0;
background-image: linear-gradient(180deg,transparent,#03e9f4);
animation: two 4s linear 1s infinite;
}
&::after{
bottom: 0;
right: -100%;
background-image: linear-gradient(-90deg,transparent,#03e9f4);
animation: three 4s linear 2s infinite;
}
i:nth-child(2){
bottom: -100%;
left: 0;
background-image: linear-gradient(360deg,transparent,#03e9f4);
animation: four 4s linear 3s infinite;
}
}
}
@keyframes one {
0% {
left: -100%;
}
50%, 100% {
left: 100%;
}
}
@keyframes two {
0% {
top: -100%;
}
50%, 100% {
top: 100%;
}
}
@keyframes three {
0% {
right: -100%;
}
50%, 100% {
right: 100%;
}
}
@keyframes four {
0% {
bottom: -100%;
}
50%, 100% {
bottom: 100%;
}
}
</style>
以上。