Created
January 20, 2015 23:18
-
-
Save hyl/acc6627ff1965564e0e1 to your computer and use it in GitHub Desktop.
Zalgo your outdated customers.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
If you actually want to use this in a live project (please don't), add the following to your HTML: | |
<!--[if lt IE 9 ]> | |
<script src="https://code.jquery.com/jquery-1.11.2.min.js"></script> | |
<script src="zalgo.js"></script> | |
<![endif]--> | |
*/ | |
// Based on Colors.js by Marak Squires, used under MIT Licence (https://github.com/Marak/colors.js/blob/master/MIT-LICENSE.txt). | |
function zalgo(text) { | |
var soul = { | |
"up" : [ | |
'̍', '̎', '̄', '̅', | |
'̿', '̑', '̆', '̐', | |
'͒', '͗', '͑', '̇', | |
'̈', '̊', '͂', '̓', | |
'̈', '͊', '͋', '͌', | |
'̃', '̂', '̌', '͐', | |
'̀', '́', '̋', '̏', | |
'̒', '̓', '̔', '̽', | |
'̉', 'ͣ', 'ͤ', 'ͥ', | |
'ͦ', 'ͧ', 'ͨ', 'ͩ', | |
'ͪ', 'ͫ', 'ͬ', 'ͭ', | |
'ͮ', 'ͯ', '̾', '͛', | |
'͆', '̚' | |
], | |
"down" : [ | |
'̖', '̗', '̘', '̙', | |
'̜', '̝', '̞', '̟', | |
'̠', '̤', '̥', '̦', | |
'̩', '̪', '̫', '̬', | |
'̭', '̮', '̯', '̰', | |
'̱', '̲', '̳', '̹', | |
'̺', '̻', '̼', 'ͅ', | |
'͇', '͈', '͉', '͍', | |
'͎', '͓', '͔', '͕', | |
'͖', '͙', '͚', '̣' | |
], | |
"mid" : [ | |
'̕', '̛', '̀', '́', | |
'͘', '̡', '̢', '̧', | |
'̨', '̴', '̵', '̶', | |
'͜', '͝', '͞', | |
'͟', '͠', '͢', '̸', | |
'̷', '͡', ' ҉' | |
] | |
}, | |
all = [].concat(soul.up, soul.down, soul.mid), | |
zalgo = {}; | |
function randomNumber(range) { | |
var r = Math.floor(Math.random() * range); | |
return r; | |
} | |
function is_char(character) { | |
var bool = false; | |
all.filter(function (i) { | |
bool = (i === character); | |
}); | |
return bool; | |
} | |
function heComes(text, options) { | |
var result = '', counts, l; | |
options = options || {}; | |
options["up"] = options["up"] || true; | |
options["mid"] = options["mid"] || true; | |
options["down"] = options["down"] || true; | |
options["size"] = options["size"] || "maxi"; | |
text = text.split(''); | |
for (l in text) { | |
if (is_char(l)) { | |
continue; | |
} | |
result = result + text[l]; | |
counts = {"up" : 0, "down" : 0, "mid" : 0}; | |
switch (options.size) { | |
case 'mini': | |
counts.up = randomNumber(8); | |
counts.min = randomNumber(2); | |
counts.down = randomNumber(8); | |
break; | |
case 'maxi': | |
counts.up = randomNumber(16) + 3; | |
counts.min = randomNumber(4) + 1; | |
counts.down = randomNumber(64) + 3; | |
break; | |
default: | |
counts.up = randomNumber(8) + 1; | |
counts.mid = randomNumber(6) / 2; | |
counts.down = randomNumber(8) + 1; | |
break; | |
} | |
var arr = ["up", "mid", "down"]; | |
for (var d in arr) { | |
var index = arr[d]; | |
for (var i = 0 ; i <= counts[index]; i++) { | |
if (options[index]) { | |
result = result + soul[index][randomNumber(soul[index].length)]; | |
} | |
} | |
} | |
} | |
return result; | |
} | |
// don't summon him | |
return heComes(text); | |
} | |
$(document).ready(function() { | |
// select an element that we want to change | |
$('p').each(function(i, e) { | |
var text = $(this).text(); | |
text = zalgo(text, {}); | |
$(this).text(text); | |
}) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment