码迷,mamicode.com
首页 > 其他好文 > 详细

打字效果

时间:2014-10-18 03:11:38      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:io   ar   sp   on   cti   html   amp   bs   htm   

(function($) {
	$.fn.typewriter = function(cb) {
		this.each(function() {
			var $ele = $(this), str = $ele.html(), progress = 0;
			$ele.html(‘‘);
			var timer = setInterval(function() {
				var current = str.substr(progress, 1);
				if (current == ‘<‘) {
					progress = str.indexOf(‘>‘, progress) + 1;
				} else {
					progress++;
				}
			$ele.html(str.substring(0, progress) + (progress & 1 ? ‘_‘ : ‘‘));
				if (progress >= str.length) {
					clearInterval(timer);
					if(typeof cb == ‘function‘){
						cb();
					}
					if(str[str.length-1] == ‘_‘){
						str=substr(0,str.length-1);
					} 
					$ele.html(str);		
				}
			}, 75);
		});
		return this;
	};
})(jQuery);


打字效果

标签:io   ar   sp   on   cti   html   amp   bs   htm   

原文地址:http://my.oschina.net/wizardpisces/blog/333970

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!