css实现自动车行驶动画效果代码

代码语言:html

所属分类:动画

代码描述:css实现自动车行驶动画效果代码

代码标签: css 自动车 行驶 动画

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

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

<head>
    <meta charset="UTF-8">
<style>
    * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  background: #252525;
}

.bicycle-container {
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 350px;
  height: 300px;
  overflow: hidden;
}
.bicycle-container .wheel {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  width: 120px;
  height: 120px;
  box-shadow: 0 10px 15px -12px rgba(0, 0, 0, 0.3);
}
.bicycle-container .wheel .tire {
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: inherit;
  height: inherit;
  border-radius: 50%;
  border: 10px solid #151515;
  z-index: 2;
}
.bicycle-container .wheel .rim {
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 114px;
  height: 114px;
  border-radius: 50%;
  border: 10px solid crimson;
  z-index: 1;
}
.bicycle-container .wheel .spokes {
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 3px solid crimson;
  z-index: 1;
  animation: rt 2s infinite linear;
  background: rgba(200, 100, 100, 0.1);
}
.bicycle-container .w.........完整代码请登录后点击上方下载按钮下载查看

网友评论0