博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
打字效果
阅读量:6150 次
发布时间:2019-06-21

本文共 703 字,大约阅读时间需要 2 分钟。

hot3.png

(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);

转载于:https://my.oschina.net/wizardpisces/blog/333970

你可能感兴趣的文章
由一个异常开始思考springmvc参数解析
查看>>
向上扩展型SSD 将可满足向外扩展需求
查看>>
jenkins updatecenter更新插件有问题
查看>>
我的友情链接
查看>>
SQL Server -- T-SQL 编码标准
查看>>
图解Team Foundation Server 2013系列
查看>>
智能语音控制中心 - 树莓派、Nanopi、Orangepi语音识别控制
查看>>
利用SCVMM 2012 R2来管理Azure虚拟机
查看>>
在U盘上安装ESXi 4.1.0
查看>>
北信源内网安全管理管理系统
查看>>
邮件营销整体解决方案
查看>>
借助工具Profwiz进行加域及账户配置文件迁移
查看>>
09-OSPF故障排查总结
查看>>
ORACLE 10g 下载地址列表
查看>>
使用ManageEngine NetFlow Analyzer监控netflow
查看>>
Struts2 漏洞彻底解决办法
查看>>
暖心的回复
查看>>
6月又过去一大半了。
查看>>
分布式文件系统MogileFS介绍
查看>>
使用Python实现Hadoop MapReduce程序
查看>>