animejs实现文字入场打字炫酷动画ppt展示代码

代码语言:html

所属分类:动画

代码描述:animejs实现文字入场打字炫酷动画ppt展示代码

代码标签: anime 文字 入场 打字 炫酷 动画 ppt 展示 代码

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

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

<head>
  <meta charset="UTF-8">
  


  
<style>
body {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
  color:white;
  background:black
}

main {
  position: relative;
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 16/9;
  backface-visibility: hidden;
}

.slide {
  opacity: 0;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.slide .row {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}

.slide p {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
  margin: 1ch;
  white-space: nowrap;
.........完整代码请登录后点击上方下载按钮下载查看

网友评论0