有人可以帮助我将文字动画添加到我创建的表单中吗?
当你刷新页面时,文本当前是动画的,虽然我需要它像表单中的占位符一样工作,但它工作正常。
一旦用户点击表单,文本就会消失,使用户能够正常搜索。
请参阅我的Fiddle
如果有人可以协助请更新小提琴,非常感谢您的帮助!
var txt = $('.writer').text();
var timeOut;
var txtLen = txt.length;
var char = 0;
$('.writer').text('|');
(function typeIt() {
var humanize = Math.round(Math.random() * (200 - 30)) + 30;
timeOut = setTimeout(function() {
char++;
var type = txt.substring(0, char);
$('.writer').text(type + '|');
typeIt();
if (char == txtLen) {
$('.writer').text($('.writer').text().slice(0, -1)); // remove the '|'
clearTimeout(timeOut);
}
}, humanize);
}());
答案 0 :(得分:4)
答案 1 :(得分:2)