简体   繁体   English

如何制作文字动画

[英]How to make text animations

I am new in Front End and I was wondering if anyone can tell me how to make the text appears like in this website: https://colorlib.com/demo?theme=glint我是前端的新手,我想知道是否有人可以告诉我如何使文本显示在此网站中: https : //colorlib.com/demo?theme=glint

From the bottom to the top?从下到上?

You should get a look at the W3.CSS Animations你应该看看W3.CSS Animations

The exact effect you are looking for could be tryed here and is called a slide-up effect您正在寻找的确切效果可以在这里尝试,称为上slide-up effect

<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">

<div class="w3-container w3-center w3-animate-bottom">
  <h1>Animation is Fun!</h1>
  <p>The w3-animate-bottom class slides in an element from the bottom. 
</p>

您可以使用 jquery 和 css 的组合,就像在这个boostrap 示例中的“在元素中滑动”部分一样。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM