gdr / bitmoji (public) (License: GPLv3) (since 2017-01-25) (hash sha1)
Download all your bitmoji emoticons, with a nice live search HTML page

/bitmoji.html (1a324c6b1afd910f496e73ab3dda630fee8c2ea4) (1416 bytes) (mode 100644) (type blob)

<html>
<head>
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' />
<style>
.emoji {
  max-width: 30%;
}
.filterinput {
	font-size: 25px;
	width: 100%;
	min-height: 40px;
}
</style>
</head>
<body>
<header id="header"></header>
<div id="results">
{% for image in images %}
<img src="{{ image.src }}" data-tags="{{ ','.join(image.tags) }}" class="emoji">
{% endfor %}
</div>
<script src="https://code.jquery.com/jquery-3.1.1.slim.min.js"></script> 
<script> 
 
(function ($) {
  jQuery.expr[':'].Contains = function(a,i,m){
      return (a.getAttribute("data-tags")).toUpperCase().indexOf(m[3].toUpperCase())>=0;
  };
  
  function listFilter(header, list) {
    var form = $("<form>").attr({"class":"filterform","action":"#"}),
        input = $("<input>").attr({"class":"filterinput","type":"text"});
    $(form).append(input).appendTo(header);
 
    $(input)
      .change( function () {
        var filter = $(this).val();
        if(filter) {
          $(list).find(".emoji:not(:Contains(" + filter + "))").hide();
          $(list).find(".emoji:Contains(" + filter + ")").show();
        } else {
          $(list).find(".emoji").show();
        }
        return false;
      })
    .keyup( function () {
        $(this).change();
    });
  }
 
  $(function () {
    listFilter($("#header"), $("#results"));
  });
}(jQuery));
 
  </script> 
</body>
</html>


Mode Type Size Ref File
100644 blob 241 7e72c01e544f12e9cb1c60811d4de71ba942c744 README.md
100644 blob 1416 1a324c6b1afd910f496e73ab3dda630fee8c2ea4 bitmoji.html
100644 blob 3393 7fc81c47c486da16b7bae4b0dd729909e6a86bdc update_json.py
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/gdr/bitmoji

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/gdr/bitmoji

Clone this repository using git:
git clone git://git.rocketgit.com/user/gdr/bitmoji

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main