css实现电风扇动画效果
代码语言:html
所属分类:动画
代码描述:css实现电风扇动画效果
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<style>
html,
body {
height: 100%;
}
body {
-webkit-box-align: center;
align-items: center;
background: #CBE6F2;
display: -webkit-box;
display: flex;
-webkit-box-pack: center;
justify-content: center;
}
.fan {
height: 200px;
position: relative;
width: 160px;
}
.head {
-webkit-box-align: center;
align-items: center;
-webkit-animation-name: rotateHead;
animation-name: rotateHead;
-webkit-animation-duration: 10s;
animation-duration: 10s;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
border: 3px solid black;
border-radius: 50%;
display: -webkit-box;
display: flex;
-webkit-box-pack: ce.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0