美文网首页
iTyped: 仿文字输入效果 纯 JS 仅 2KB 大小

iTyped: 仿文字输入效果 纯 JS 仅 2KB 大小

作者: simplerandom | 来源:发表于2020-06-01 17:58 被阅读0次

http://dreamwq.com/392

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

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<script src="https://unpkg.com/ityped@0.0.5"></script>

<body>
    <span id="ityped"></span>
</body>
<script>

    ityped.init('#ityped', {
        strings: ['我是文字一哦', '我是文字二哦', '我是文字3哦', '没有文字啦。。。'],
        startDelay: 200,
        loop: true
    });
</script>

</html>

相关文章

网友评论

      本文标题:iTyped: 仿文字输入效果 纯 JS 仅 2KB 大小

      本文链接:https://www.haomeiwen.com/subject/kthzahtx.html