div+css实现华为手机充电动画效果代码
代码语言:html
所属分类:动画
代码描述:div+css实现华为手机充电动画效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<style>
html,
body {
width: 100%;
height: 100%;
display: flex;
background: #000;
overflow: hidden;
}
.g-number {
position: absolute;
width: 300px;
top: 27%;
text-align: center;
font-size: 32px;
z-index: 10;
color: #fff;
}
.g-container {
position: relative;
width: 300px;
height: 400px;
margin: auto;
}
.g-contrast {
filter: contrast(10) hue-rotate(0);
width: 300px;
height: 400px;
background-color: #000;
overflow: hidden;
-webkit-animation: hueRotate 10s infinite linear;
animation: hueRotate 10s infinite linear;
}
..........完整代码请登录后点击上方下载按钮下载查看
















网友评论0