我正在使用一个名为“typed”的 jquery 插件,它一个接一个地输入句子。这很好,但我想知道是否可以暂停代码,直到文本区域在浏览器窗口中可见?
因为我希望人们能够看到输入的第一句话,但目前您会错过第一句话,因为它在页面顶部不可见。
这是我正在处理的页面:http: //jakdesign.webflow.com/
这是html头部的代码:
$(document).ready(function( $ ) {
$("#hero-text").typed({
strings: ["First sentence.", "Second sentence."],
typeSpeed: 0
});
});
这是插件: https ://rawgithub.com/morr/jquery.appear/master/jquery.appear.js