雨中漂浮小船涟漪效果

代码语言:html

所属分类:动画

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


<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">

<title>  CSS paper boat sailing in the rain</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css">
<style>
    @import url(https://fonts.googleapis.com/css?family=Open+Sans:800);
body {
  background: #000;
  overflow: hidden;
}

#instructions {
  position: absolute;
  width: 100%;
  top: 50%;
  margin: auto;
  margin-top: 80px;
  font-family: 'Open Sans', sans-serif;
  color: #AAA;
  font-size: 1.1em;
  text-transform: uppercase;
  text-align: center;
  line-height: 130%;
}

#bgr {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(#000, #111, #222, #000);
}

#raftHolder {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100px;
  height: 50px;
  overflow: hidden;
}

#raft {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  -webkit-animation-name: raftFloat;
          animation-name: raftFloat;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-timing-function: ease-in-out;
  .........完整代码请登录后点击上方下载按钮下载查看

网友评论0