边框滚动动画

转自:张鑫旭的博客

1. 虚线边框滚动动画

兼容IE10+

1
2
3
<div class="box">
<div class="content">内容占位</div>
</div>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
 .box {
width: 200px;
background: repeating-linear-gradient(135deg, transparent, transparent 3px, #000 3px, #000 8px);
animation: shine 1s infinite linear;
overflow: hidden;
}

.content {
height: 128px;
margin: 1px;
padding: 10px;
background-color: #fff;
}

@keyframes shine {
0% {
background-position: -1px -1px;
}
100% {
background-position: -12px -12px;
}
}

点击查看实例效果

2. 实线边框loading动画

兼容IE10+

1
<div class="box"></div>
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
.box {
height: 96px;
width: 128px;
display: inline-block;
padding: 10px;
position: relative;
text-align: center;
}

.box::before {
content: '';
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
border: 2px solid #cd0000;
animation: borderAround 1.5s infinite linear;
}

@keyframes borderAround {
0%,
100% {
clip: rect(0 148px 2px 0);
}
25% {
clip: rect(0 148px 116px 146px);
}
50% {
clip: rect(114px 148px 116px 0);
}
75% {
clip: rect(0 2px 116px 0);
}
}

点击查看实例效果

转自:张鑫旭的博客

-------------本文结束感谢您的阅读-------------

本文标题:边框滚动动画

文章作者:老米的世界

发布时间:2018年11月14日 - 00:00

最后更新:2019年09月05日 - 22:06

原始链接:http://mpfly.github.io/2018/11/14/边框滚动动画/

许可协议: 署名-非商业性使用-禁止演绎 4.0 国际 转载请保留原文链接及作者。

老米的世界 wechat
欢迎关注我的微信公众号!
坚持原创技术分享,您的支持将鼓励我继续创作!