Skip to content

Instantly share code, notes, and snippets.

@come25136
Last active February 15, 2017 03:51
Show Gist options
  • Save come25136/c444f9007bf326fb4ca4290dd35ee2e6 to your computer and use it in GitHub Desktop.
Save come25136/c444f9007bf326fb4ca4290dd35ee2e6 to your computer and use it in GitHub Desktop.
タイピング風に文字を表示させるjQueryプラグイン
(function ($) {
$.fn.ctyping = function (value, min, max) {
return this.each(function () {
var $this = $(this);
var values = value.split("");
var count = 0;
function add() {
$this.append(values[count]);
count++;
if (count !== values.length) {
setTimeout(add, Math.floor(Math.random() * (++max - min)) + min);
}
}
add();
});
};
})(jQuery);
@come25136
Copy link
Author

パブリックドメインです。私用, 商用に関わらず、ご自由にお使いください。

@come25136
Copy link
Author

bower install ctyping でインストールできます。
リポジトリを作成しました https://github.com/come25136/ctyping

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment