1
我正在嘗試使用jquery進行打字機效果,以在每條消息之間按幾秒鐘的順序顯示消息。使用jQuery序列消息的打字機效果
這裏是我的代碼 jsfiddle
var where, when; //added
$.fn.teletype = function(opts){
var $this = this,
defaults = {
animDelay: 50
},
settings = $.extend(defaults, opts);
var letters = settings.text.length; //added
where = '#' + $($this).attr('id'); //added
when = settings.animDelay; //added
$.each(settings.text, function(i, letter){
setTimeout(function(){
$this.html($this.html() + letter);
}, settings.animDelay * i);
});
};
$(function(){
$('#container1').teletype({
animDelay: 100,
text: 'This is message 1'
});
$('#container2').teletype({
animDelay: 100,
text: 'this is message 2'
});
});
但問題是,我的郵件運行所有一起
如何控制消息之間的時間?
代碼你可以[使用](http://onehackoranother.com/projects/jquery/jquery-grab-bag/text-effects的.html)。 – 2013-02-13 14:34:35
打字機效果和我一起工作,我的問題是管理消息之間的外觀 – 2013-02-13 14:38:06
你想在這個消息1的動畫完成後顯示this this message 2。對 ? – Jashwant 2013-02-13 14:40:30