div+css实现钟摆左右摆动动画文字效果代码

代码语言:html

所属分类:动画

代码描述:div+css实现钟摆左右摆动动画文字效果代码

代码标签: div css 钟摆 左右 摆动 动画 文字

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

<!DOCTYPE html>
<html lang="en" >
<head>
  <meta charset="UTF-8">
<style>
    @import url("https://fonts.googleapis.com/css?family=Fira+Mono:700");
*, *::after, *::before {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  min-height: 100%;
}

body {
  margin: 0;
  display: flex;
  justify-content: center;
  font-family: "Fira Mono", monospace;
  background: linear-gradient(to top right, #524ad0 10%, #D099FA);
}

.stage {
  position: relative;
  display: flex;
  align-items: center;
}

.text {
  position: relative;
  font-size: 3em;
  color: #5437E3;
}
@media (min-width: 768px) {
.........完整代码请登录后点击上方下载按钮下载查看

网友评论0