jQuery-typing
- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: http://narf.pl/jquery-typing/
软件介绍
jQuery-typing这个jQuery插件用于为文本输入框的键盘开始和结束输入事件添加回调功 能。
$(':text').first().typing({
start: function () {
$('body').css('color', 'red');
},
stop: function () {
$('body').css('color', 'blue');
}, delay: 400
});
