字一个个出现效果

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>学习使用html和js实现打字机效果代码整理</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: rgb(43, 52, 82);
        }

        .text {
            font-family: 'fangsong';
            display: inline-block;
            position: relative;
            font-size: 40px;
            height: 60px;
            line-height: 60px;
            color: rgb(245, 245, 245);
        }

        .text::after {
            content: '';
            position: absolute;
            right: -10px;
            top: 5px;
            height: 50px;
            width: 3px;
            background-color: #fff;
            animation: san 0.5s steps(1) infinite;
        }

        @keyframes san {
            0%, 100% {
                background-color: #fff;
            }
            50% {
                background-color: transparent;
            }

        }
    </style>
</head>
<body>
<h1>
    <span class="text"></span>
</h1>
<script>
    const text = document.querySelector('.text');
    const txt = ["qipa250二手车买卖面临的挑战确实很多,以下是一些可能有助于扭转局面的建议:\n" +
    "1. 提高服务质量:为客户提供更好的服务,例如更快速的车况检测、更详细的车辆描述和更高的购车体验,从而提高客户满意度和忠诚度。\n"];
   
    var index = 0;
    var xiaBiao = 0;

    var huan = true;
    var timer = null

    timer = setInterval(function () {

        if (huan) {
            text.innerHTML = txt[xiaBiao].slice(0, ++index);
        } else {
            text.innerHTML = txt[xiaBiao].slice(0, index--);
        }

        if(text.innerHTML.length == txt[0].length){
          console.log('停止');
          huan = false
        }

        if(text.innerHTML.length == 0){
          console.log('开始');
          huan = true
        }

    }, 50);//调整显示速度

</script>
</body>
</html>

记录一下啦

  • 3
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值