css布局实现月色当空夜晚公交车行驶动画效果代码
代码语言:html
所属分类:动画
代码描述:css布局实现月色当空夜晚公交车行驶动画效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<style>
* {
margin: 0;
padding: 0;
}
body {
background: linear-gradient(#382c41, #5a3097);
font-family: sans-serif;
height: 100vh;
position: relative;
}
.moon {
height: 100px;
width: 100px;
border-radius: 50%;
background-color: white;
position: absolute;
right: 100px;
top: 100px;
z-index: 1;
}
.moon:after {
content: "";
width: 104px;
height: 104px;
border-radius: 50%;
background-color: white;
position: absolute;
right: -2px;
top: -2px;
opacity: 0.5;
z-index: 2;
}
.little-star {
width: 2px;
height: 2px;
border-radius: 50%;
background: white;
position: absolute;
animation: twinkling 800s ease-in infinite;
}
.medium-star {
width: 4px;
height: 4px;
border-radius: 50%;
background: white;
position: absolute;
animation: twinkling 1000ms ease-in infinite;
}
.road {
background-color: #342c45;
bottom: 0;
height: 100px;
width: 100%;
position: absolute;
}
.bus {
width: 200px;
height: 80px;
background-color: #372c5f;
position: absolute;
bottom: 120px;
left: 120px;
display: flex;
padding: 10px;
animation: move-van 8s linear forwards;
}
.window {
background-color: white;
width: 10px;
height: 10px;
margin: 0 10px 0 0px;
z-index: 3;
}
.small-window {
background-color: white;
width: 5px;
height: 10px;
margin: 0 2px;
z-index: 2;
}
.tyres {
position: absolute;
display: flex;
bottom: -15px;
width: 200px;
}
.tyre {
width: 10px;
height: 10px;
background-color: #342.........完整代码请登录后点击上方下载按钮下载查看
网友评论0