diff options
| author | Jules Laplace <jules@okfoc.us> | 2014-05-27 13:42:31 -0400 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2014-05-27 13:42:31 -0400 |
| commit | 37e30ff9108c2a5ba335cb391aabfa68f0526c0e (patch) | |
| tree | 65d7ba7ba2580d87c97bc38c421c2043d615c116 /emoji | |
| parent | 3787c630ee16c808e6579b3c29c94566e651baa1 (diff) | |
emoji-list
Diffstat (limited to 'emoji')
| -rw-r--r-- | emoji/emoji-list.html | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/emoji/emoji-list.html b/emoji/emoji-list.html new file mode 100644 index 0000000..c4e9b42 --- /dev/null +++ b/emoji/emoji-list.html @@ -0,0 +1,76 @@ +<!doctype> +<html> +<head> + <title>rain</title> + <style type="text/css"> + * { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } + .mx-object3d { -webkit-transform-style: preserve-3d; transform-style: preserve-3d; } + html,body{ margin: 0; padding: 0; width:100%;height:100%;} + body { + -webkit-perspective: 600px; + -moz-perspective: 600px; + perspective: 1000px; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + -o-user-select: none; + user-select: none; + top:0; + left:0; + width:100%; + height:100%; + font-family:sans-serif; + background-color: white; + } + div { + float: left; + } + div img { + width: 48px; + height: 48px; + } + </style> + <body> + </body> + <script type="text/javascript" src="http://okfoc.us/beentrill/shirts/assets/js/vendor/jquery-1.10.2.min.js"></script> + <script type="text/javascript"> + (function( ua ) { + ua = ua.toLowerCase(); + var match = /(chrome)[ \/]([\w.]+)/.exec( ua ) || + /(webkit)[ \/]([\w.]+)/.exec( ua ) || + /(opera)(?:.*version|)[ \/]([\w.]+)/.exec( ua ) || + /(msie) ([\w.]+)/.exec( ua ) || + 0 > ua.indexOf("compatible") && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec( ua ) || + []; + var matched = { + browser: match[ 1 ] || "", + version: match[ 2 ] || "0" + }; + browser = {}; + if ( matched.browser ) { + browser[ matched.browser ] = true; + browser.version = matched.version; + } + // Chrome is Webkit, but Webkit is also Safari. + if ( browser.chrome ) { + browser.webkit = true; + } else if ( browser.webkit ) { + browser.safari = true; + } + $.browser = browser; + return browser; + })( navigator.userAgent ); + + $(window).load(function(){ + init(); + }); + function init(){ + var els = "" + for (var i = 1; i <= 846; i++) { + els += "<div><img src='http://okfocus.s3.amazonaws.com/emoji/" + i + ".png'><br>" + i + "</div>" + } + $("body").html(els) + } + +</script> +</html> |
