Emoji One Labs

Emoji One PNG Sprites

🍒 :) :coffee: :( :fire: 🍔

We've setup a spritesheet for people to use. These sprites are resizeable up to 64x64 pixels, (at which point they will begin to stretch).

Some Considerations

1. Attach Sprite CSS Stylesheet:

To get PNG sprites working you first need to link the Sprites stylesheet in your <head>. This file is available in our git repo under /assets/sprites. Make sure to include the accompanying emojione.sprites.png file in the same directory, or update its path in the css file if you move it.

<link rel="stylesheet" href="path/to/emojione.sprites.css"/>

2. Enable PNG Sprite mode

Once the stylesheet is attached, it's just a matter of enabling PNG Sprites in your Emoji One configuration

Javascript Example

emojione.imageType = 'png';
emojione.sprites = true;

PHP Example

Emojione::$imageType = 'png';
Emojione::$sprites = true;

If you are not using our conversion scripts, PNG sprites can be implemented using the following markup structure. In this example we're using the unicode symbol 1F433 aka 🐳

<span class="emojione-1F433">
  &#x1f433;
</span>