summaryrefslogtreecommitdiff
path: root/emoji/emoji-list.html
blob: c4e9b4208addce7341f7189aec91b8aeb2e9b8f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
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>