css实现打字动画效果代码

代码语言:html

所属分类:动画

代码描述:css实现打字动画效果代码

代码标签: 动画 效果

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

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">



    <link href="https://fonts.googleapis.com/css2?family=Lato:wght@700&display=swap" rel="stylesheet">


    <style>
        body {
          background: #182028;
          display: flex;
          flex-direction: column;
          justify-content: center;
          height: 100vh;
          margin: 0;
        }
        
        h1 {
          font-size: 9vmin;
          color: #8bf;
          text-align: left;
          font-family: Lato, sans-serif;
          font-weight: 700;
          margin: 1rem 0 1rem 2rem;
        }
        
        /* Typewriter effect 1 */
 .........完整代码请登录后点击上方下载按钮下载查看

网友评论0