
</style>
<script>
// 动态打字机效果
const title = document.querySelector('.hero-title');
const text = title.textContent;
title.textContent = '';
let i = 0;
function type() {
if (i < text.length) {
title.textContent += text.charAt(i);
i++;
setTimeout(type, 100);
}
}
type();
</script>
文章版权声明:文章内容均来源于各大短视频平台搜集以及修改和删减新增,如有侵权或者违规,请联系站长进行删除,如需转载或复制请以超链接形式并注明出处。

还没有评论,来说两句吧...