css实现鸭子荡秋千动画效果代码

代码语言:html

所属分类:动画

代码描述:css实现鸭子荡秋千动画效果代码

代码标签: css 鸭子 秋千 动画

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="en" >

<head>

  <meta charset="UTF-8">
  

  
  
  
<style>
body {
  height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #81d4fa;
}
body:after {
  content: "";
  display: block;
  width: 100%;
  height: calc(50% - 185px);
  bottom: 0;
  position: absolute;
  background-color: #66bb6a;
}

.swing {
  position: relative;
}
.swing:before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background-color: #90a4ae;
  position: absolute;
  left: -7.5px;
  top: -7.5px;
  border.........完整代码请登录后点击上方下载按钮下载查看

网友评论0