div+css实现落日山坡上的风车发电旋转动画效果代码
代码语言:html
所属分类:动画
代码描述:div+css实现落日山坡上的风车发电旋转动画效果代码
代码标签: div css 落日 山坡 风车 发电 旋转 动画
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
*:before, *:after {
content: "";
diplay: block;
position: absolute;
box-sizing: border-box;
}
html, body {
height: 100%;
background: #593c1e;
}
.landscape {
position: relative;
height: calc(100vh - 50px);
background: #db9;
overflow: hidden;
}
.landscape div {
position: absolute;
}
.sun {
left: 50%;
bottom: 180px;
width: 150px;
height: 150px;
margin-left: 200px;
border-radius: 50%;
background: #ff8;
}
.level {
left: 50%;
width: 2000px;
height: .........完整代码请登录后点击上方下载按钮下载查看
















网友评论0