好、快、便宜定律模拟动画

代码语言:html

所属分类:动画

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


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

<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700&amp;display=swap'>
<style>
* {
  box-sizing: border-box;
}

body {
  font-family: "Source Sans Pro", Verdana, sans-serif;
  margin: 0;
  min-height: 100vh;
  overflow: hidden;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #5c627d), to(#2e3255));
  background: linear-gradient(#5c627d 50%, #2e3255);
}

button {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
}

.app {
  position: relative;
  margin: 0 auto;
  max-width: 800px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  min-height: 100vh;
  flex-wrap: wrap;
  font-size: 18px;
}

.btn {
  font-size: inherit;
  background: none;
  cursor: pointer;
  border-radius: 70px;
  width: 70px;
  height: 70px;
  text-transform: uppercase;
  background: transparent;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  outline: none;
  border: none;
  font-weight: bold;
  color: transparen.........完整代码请登录后点击上方下载按钮下载查看

网友评论0