博客都在使用的打字机效果,居然这么简单?

效果展示

hellow2

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

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
  <style>
    body {
      margin: 0;
      height: 100vh;
      background: #ff9292;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .text {
      font-size: 20px;
      /* background: red; */
      border-right: 2px solid #fff;
      white-space: nowrap;
      overflow: hidden;
      width: 0;
      animation: grow 4s infinite steps(14) 2s,
        blink 500ms infinite steps(44);
    }

    @keyframes grow {

      40%,
      60% {
        width: 124px;
      }

      100% {
        width: 0;
      }
    }

    @keyframes blink {
      from {
        border-right-color: #fff;
      }

      to {
        border-right-color: transparent;
      }
    }
  </style>
</head>

<body>
  <p class="text">Hello World!</p>
</body>

</html>

原理讲解

从宽度0到300px来显示标签内容,

宽度0时溢出的部分设置 overflow: hidden;

文本超出标签换行的属性设置为 white-space: nowrap;

设置边框作为光标,增加动画 有颜色到透明 持续时间500ms制造闪烁效果

出场grow关键帧中间顶峰时保持不变,40,60% 为300px最大值,

设置grow的delay属性为其增加停顿感

steps 为帧数, 越小越卡,越像光标闪烁

  • 6
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值