更新第33个小实例

This commit is contained in:
DESKTOP-BM6RJU5\wyanh 2021-11-05 17:37:59 +08:00
parent ad72e91acb
commit 3f811b6bbc
3 changed files with 147 additions and 1 deletions

View File

@ -36,4 +36,5 @@
29. HTML5+CSS3小实例之高级的转动变色加载特效
30. HTML5+CSS3小实例之边框滑动按钮的悬停效果
31. HTML5+CSS3小实例之雷达扫描特效
32. HTML5+CSS3小实例之毛玻璃炫光按钮
32. HTML5+CSS3小实例之毛玻璃炫光按钮
33. HTML5+CSS3小实例之手机充电特效

127
css/33.css Normal file
View File

@ -0,0 +1,127 @@
*{
/* 初始化 取消页面元素的内外边距 */
margin: 0;
padding: 0;
}
body{
/* 100%窗口高度 */
height: 100vh;
/* 弹性布局 水平、垂直居中 */
display: flex;
justify-content: center;
align-items: center;
background-color: #000;
/* 相对定位 */
position: relative;
}
/* 电池 */
.battery{
width: 200px;
height: 320px;
background-color: #fff;
/* 设置圆角 */
border-radius: 10px 10px 5px 5px;
position: relative;
}
/* 电池顶部 正极 */
.battery::before{
content: "";
width: 50px;
height: 20px;
background-color: #fff;
/* 绝对定位 */
position: absolute;
top: -20px;
left: 50%;
margin-left: -25px;
border-radius: 5px 5px 0 0;
}
/* 充电效果层 */
.battery::after{
content: "";
position: absolute;
left: 0;
right: 0;
top: 90%;
bottom: 0;
border-radius: 10px 10px 5px 5px;
/* 渐变背景 */
background: linear-gradient(to bottom,#04e963 0%,#0bdf9f 44%,#0bdfc3 100%);
/* 执行充电动画:动画名称 时长 线性的 无限次播放 */
animation: charge 10s linear infinite;
}
/* 接下来制作充电时的波浪效果 */
.cover{
width: 100%;
height: 100%;
border-radius: 10px 10px 5px 5px;
position: absolute;
left: 0;
top: 0;
z-index: 1;
/* 加个溢出隐藏 */
overflow: hidden;
}
.cover::before{
content: "";
width: 400px;
height: 400px;
background: rgba(255,255,255,0.8);
position: absolute;
border-radius: 40% 30%;
left: -50%;
/* 执行动画 */
animation: coverBefore 10s linear infinite;
}
.cover::after{
content: "";
width: 400px;
height: 400px;
background: rgba(255,255,255,0.7);
position: absolute;
border-radius: 42% 40%;
left: -50%;
/* 执行动画 */
animation: coverAfter 10s linear infinite;
}
/* 定义动画 */
/* 充电动画 */
@keyframes charge {
0%{
top: 100%;
border-radius: 0 0 5px 5px;
/* hue-rotate是颜色滤镜可以设置不同的度数来改变颜色 */
filter: hue-rotate(90deg);
}
95%{
top: 5%;
border-radius: 0 0 5px 5px;
}
100%{
top: 0%;
filter: hue-rotate(0deg);
}
}
/* 波浪1动画 */
@keyframes coverBefore {
0%{
transform: rotate(0deg);
bottom: 0%;
}
100%{
transform: rotate(360deg);
bottom: 100%;
}
}
/* 波浪2动画 */
@keyframes coverAfter {
0%{
transform: rotate(30deg);
bottom: 2%;
}
100%{
transform: rotate(360deg);
bottom: 95%;
}
}

18
html/33.html Normal file
View File

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
<title>手机充电特效</title>
<link rel="stylesheet" href="../css/33.css">
</head>
<body>
<div class="battery">
<div class="cover"></div>
</div>
</body>
</html>