关于气泡水动画

开工啦开工啦!

今天去查 SS 流量使用情况的时候 ,看到了下面这个东西,然后以前在一些中文 wiki 里也看到过相关的建站信息用了这种动画,今天刚好有空来搞一搞。

(不知道该怎么称呼这种动画效果,看起来像苏打水,所以就称为气泡水动画了

气泡水动画

图 1

来源

原网站地址
↑ 需要注册后登录在个人中心中查看 ,是一个出售 VPN 网站,或者说出售的是 SS 节点更合适。

!需要吐槽的是官网的代码(指图 1 的源码)写的很乱(虽然能用
所以重新写了一份,见文末的源码。

关键代码

HTML 代码

code
1
2
3
<div class="progress sparkle">
<div class="progress-bar red" style="width: calc(7%)"></div>
</div>

CSS 代码
-> 为了减少篇幅进删除了兼容性语句。
-> 完整的可以看最后的源码。

code
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
.red {
box-shadow: 0px 0px 5px 0px rgba(232, 25, 87, 1), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.45),
inset 1px 0px 0px 0px rgba(255, 255, 255, 0.25), inset -1px 0px 0px 0px rgba(255, 255, 255, 0.25);
background: rgb(255, 104, 149);
}
.progress {
margin-top: 18px;
position: relative;
border: 1px solid rgba(222, 222, 222, 0.8);
border-radius: 20px;
display: inline-block;
box-shadow: 0 5px 17px rgba(222, 222, 222, 0.5), 0 0 3px 1px rgba(
222,
222,
222,
0.5
) inset;
width: calc(100% - 2px);
height: 20px;
}
.progress-bar {
overflow: hidden;
position: relative;
border-radius: 12px;
width: calc(100% - 2px);
height: 20px;
transition: width 0.2s linear;
}
.progress.sparkle .progress-bar {
background-image: url(./img/trafficbar.png);
box-shadow: inset 0 -2px 2px rgba(255, 255, 255, 0.8), inset 0 2px 2px rgba(255, 255, 255, 0.8);
animation: sparkle 1500ms linear infinite;
}
@keyframes sparkle {
from {
background-position: 0 0;
}
to {
background-position: 0 -64px;
}
}

.progress-bar 的背景图片如下图。因为是透明背景的白色晶片状图片,下图为在黑色背景的截图。

气泡水动画

图 2

=> 图片下载连接

background-position

MDN 文档

background-position 为背景图片设置初始位置。
在本动画中,通过设置 background-position 的变动来实现动画。

取值:

  1. top / bottom / left / right / center
    取值为前四个时,把背景图片放在对应的一侧的边缘,另一维度设置为 50% ;
    取值为 center 时,把背景图片水平垂直居中。
  2. <length>/<percentage>
    取值为一个数,指定左边缘的 x 坐标 ,y 坐标设置成 50%。
  3. <length>/<percentage> <length>/<percentage>
    取值为两个数,中间由空格隔开。
    默认为 left 和 top 的值
    也可以指定位置关键词取值,例子如下
  • background-position: bottom 10px right 20px;
  • background-position: right 3em bottom 10px;
  • background-position: bottom 10px right; (表示距离底部边缘 10px ,水平居右
  • background-position: top right 10px; (表示处于顶端,且水平距离右边缘 10px

animation

CSS 的 animation 属性是动画实现关键。
MDN 文档

如同 CSS 中的 background 属性、font 属性一样,animation 属性也是由多条与动画有关的属性(如下)组成

  • animation-name
  • animation-duration
  • animation-timing-function
  • animation-delay
  • animation-iteration-count
  • animation-direction
  • animation-fill-mode
  • animation-play-state

太多了不想一一列举(划水警告
在实现的 demo 中

code
1
animation: sparkle 1500ms linear infinite;
  1. sparkle 对应 animation-name,而这名称与具体的动画名要匹配,也就是要与下方的代码匹配
code
1
2
3
4
5
6
7
8
@keyframes sparkle {
from {
background-position: 0 0;
}
to {
background-position: 0 -64px;
}
}

关于 keyframes

  1. 1500ms 对应 animation-duration,指的是动画周期的时长,默认 0s 即无动画,单位可以是 ms 也可以是 s
  2. linear 对应 animation-timing-function,定义了动画在每一动画周期中的执行节奏。可能值为一或多个
  3. infinite 对应 animation-iteration-count,取值为数字或 infinite,动画执行指定次数或无限次。

实现效果

使用最后文章末尾的源码实现的效果截图。

气泡水动画

这里安利下 ScreenToGif

很好用的屏幕、摄像头和白板录像机与集成编辑器。

总结

其实就是一个 animation 的小应用。

动画这个东西水很深

感觉也只能靠积累惹。

2019-06-14更新

发现了一个大宝贝!

大佬实现了多个 CSS 进度条动画

代码 → codepen

附-源码

GitHub

code
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
<body>
<div class="container">
<div class="bar">
<div class="top">
<div class="cycle red">
<span></span>
</div>
<span class="text">今日已用</span>
<span style="float: right; margin-right: 1vw;">7%</span>
</div>
<div class="progress sparkle">
<div class="progress-bar red" style="width: calc(7%)"></div>
</div>
</div>
<div class="bar">
<div class="top">
<div class="cycle yellow">
<span></span>
</div>
<span class="text">过去已用</span>
<span style="float: right; margin-right: 1vw;">24%</span>
</div>
<div class="progress sparkle">
<div class="progress-bar yellow" style="width: calc(24%);"></div>
</div>
</div>
<div class="bar">
<div class="top">
<div class="cycle green">
<span></span>
</div>
<span class="text">剩余流量</span>
<span style="float: right; margin-right: 1vw;">69%</span>
</div>
<div class="progress sparkle">
<div class="progress-bar green" style="width:calc(69%);"></div>
</div>
</div>
</div>
</body>
code
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
body {
background-color: #F8F9FE;
font-size : 15px;
box-sizing : border-box;
}

.red {
box-shadow: 0px 0px 5px 0px rgba(232, 25, 87, 1), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.45), inset 1px 0px 0px 0px rgba(255, 255, 255, 0.25), inset -1px 0px 0px 0px rgba(255, 255, 255, 0.25);
background: rgb(255, 104, 149);
}

.green {
box-shadow: 0px 0px 5px 0px rgba(126, 234, 25, 1), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.45), inset 1px 0px 0px 0px rgba(255, 255, 255, 0.25), inset -1px 0px 0px 0px rgba(255, 255, 255, 0.25);
background: rgb(126, 234, 25);
}

.yellow {
box-shadow: 0px 0px 12px 0px rgba(229, 195, 25, 1), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.45), inset 1px 0px 0px 0px rgba(255, 255, 255, 0.25), inset -1px 0px 0px 0px rgba(255, 255, 255, 0.25);
background: rgb(229, 195, 25);
}

.container {
width : 390px;
margin : 10vh auto;
box-shadow : 0 0px 0 #e5e5e5, 0 0 15px rgba(0, 0, 0, .12), 0 2px 4px rgba(0, 0, 0, .05);
background-color: #fff;
border-radius : 10px;
padding : 40px 20px;
}

.bar {
margin: 18px 0;
}

.text {
display: inline-block;
}

.top, .text {
margin-left: 12px;
}

.progress {
margin-top : 18px;
position : relative;
z-index : 5;
border : 1px solid rgba(222, 222, 222, .8);
border-radius: 20px;
display : inline-block;
box-shadow : 0 5px 17px rgba(222, 222, 222, 0.5), 0 0 3px 1px rgba(222, 222, 222, 0.5) inset;
}

.progress,
.progress-bar {
width : calc(100% - 2px);
height: 20px;
}

.progress-bar {
overflow : hidden;
position : relative;
z-index : 10;
border-radius : 12px;
-moz-transition : width .2s linear;
-webkit-transition: width .2s linear;
-o-transition : width .2s linear;
transition : width .2s linear;
}

.progress.sparkle .progress-bar {
background-image : url(./img/trafficbar.png);
box-shadow : inset 0 -2px 2px rgba(255, 255, 255, 0.8), inset 0 2px 2px rgba(255, 255, 255, 0.8);
-webkit-animation: sparkle 1500ms linear infinite;
-moz-animation : sparkle 1500ms linear infinite;
-o-animation : sparkle 1500ms linear infinite;
animation : sparkle 1500ms linear infinite;
}


@-webkit-keyframes sparkle {
from {background-position: 0 0;}
to {background-position: 0 -64px;}
}
@-moz-keyframes sparkle {
from {background-position: 0 0;}
to {background-position: 0 -64px;}
}
@-o-keyframes sparkle {
from {background-position: 0 0;}
to {background-position: 0 -64px;}
}
@keyframes sparkle {
from {background-position: 0 0;}
to {background-position: 0 -64px;}
}

.cycle {
width : 20px;
height : 20px;
border-radius : 20px;
display : inline-block;
vertical-align: sub;

}

.cycle span {
background-image : url(./img/trafficbar.png);
height : 100%;
width : 100%;
display : block;
-webkit-animation: sparkle 1500ms linear infinite;
-moz-animation : sparkle 1500ms linear infinite;
-o-animation : sparkle 1500ms linear infinite;
animation : sparkle 1500ms linear infinite;
}
0%