PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Dir : /home/trave494/productjuly1video/healreals.click/themes/youplay/js/emoji/emojione/ |
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 IP: 209.182.202.254 |
Dir : /home/trave494/productjuly1video/healreals.click/themes/youplay/js/emoji/emojione/USAGE.md |
# emojione Usage ## Object Properties Both PHP and JavaScript libraries now have wider range of available properties. The following are available for both libraries. - `emojiVersion` (str) - Used only to direct CDN path. This is a 2-digit version (e.g. '3.1'). Not recommended for usage below 3.0.0. - `emojiSize` (str) **Default: `32`** - Used only to direct CDN path for non-sprite PNG usage. Available options are '32', '64', and '128'. - `imagePathPNG` (str) - Defaults to CDN (jsdelivr) path. Setting as alternate path overwrites `emojiSize` option. - `fileExtension` (str) - Defaults to .png. Set to '.svg' if using premium assets (.svg) locally. - `greedyMatch` (bool) **Default: `false`** - When `true`, matches non-fully-qualified Unicode values. - `blacklistChars` (str) **Default: `''`** - Comma-separated list of characters that should not be replaced. For example, setting to `'#,*'` ensures pound and asterisk symbols are not replaced. - `imageTitleTag` (bool) **Default: `true`** - When `false`, removes title attribute from <img> tag. - `sprites` (bool) **Default: `false`** - When `true`, sprite markup will be used. Sprite CSS and PNG assets must be additionally included. - `spriteSize` (str) **Default `32`** - Alternate size is `64`. - `unicodeAlt` (bool) **Default `false`** - When `true`, sets unicode char as alt attribute for ability to copy image as unicode. - `ascii` (bool) **Default `false`** - When `true`, matches ASCII characters (in `unicodeToImage` and `shortnameToImage` functions). - `riskyMatchAscii` (bool) **Default `false`** - When `true`, matches ASCII characters not encapsulated by spaces. Can cause issues when matching (e.g. `C://filepath` or `<button>.</button>` both contain ASCII chars). ## Usage Examples Below there are some examples of how you will actually use the libraries to convert Unicode emoji characters to :shortnames: and :shortnames: to emoji images. ### Javascript Conversion **[.toShort\(str\)](https://demos.emojione.com/latest/jstoshort.html)** - _native unicode -> shortnames_ This demo shows you how to take native unicode emoji input, such as that from your mobile device, and translate it to their corresponding shortnames. (we recommend this for database storage) **[.shortnameToImage\(str\)](https://demos.emojione.com/latest/jsshortnametoimage.html)** - _shortname -> images_ This demo shows you how to take input containing only shortnames and translate it directly to EmojiOne images. (when displaying the unified input to clients) **[.toImage\(str\)](https://demos.emojione.com/latest/jstoimage.html)** - _native unicode + shortnames -> images (mixed input)_ This demo shows you how to take input containing both native unicode emoji and shortnames, and translate it into EmojiOne images for display. ### PHP Conversion ##### As of version 1.4.1 this library syntax has changed. **[toShort\($str\)](https://demos.emojione.com/latest/phptoshort.php)** - _native unicode -> shortnames_ This demo shows you how to take native unicode emoji input, such as that from your mobile device, and translate it to their corresponding shortnames. (we recommend this for database storage) **[shortnameToImage\($str\)](https://demos.emojione.com/latest/phpshortnametoimage.php)** - _shortname -> images_ This demo shows you how to take input containing only shortnames and translate it directly to EmojiOne images. (when displaying the unified input to clients) **[toImage\($str\)](https://demos.emojione.com/latest/phptoimage.php)** - _native unicode + shortnames -> images (mixed input)_ This demo shows you how to take input containing both native unicode emoji and shortnames, and translate it into EmojiOne images for display. ##### Note: As of version 1.4.1 the following implementation has been deprecated. It's included in the library for backwards compatibility but will be removed at a later date. **[::toShort\($str\)](https://demos.emojione.com/1.4.0/phptoshort.php)** - _native unicode -> shortnames_ This demo shows you how to take native unicode emoji input, such as that from your mobile device, and translate it to their corresponding shortnames. (we recommend this for database storage) **[::shortnameToImage\($str\)](https://demos.emojione.com/1.4.0/phpshortnametoimage.php)** - _shortname -> images_ This demo shows you how to take input containing only shortnames and translate it directly to EmojiOne images. (when displaying the unified input to clients) **[::unicodeToImage\($str\)](https://demos.emojione.com/1.4.0/phpunicodetoimage.php)** - _native unicode -> images_ This demo shows you how to take native unicode emoji input, such as that from your mobile device, and translate it directly to EmojiOne images. (would be great for a live editor preview) **[::toImage\($str\)](https://demos.emojione.com/1.4.0/phptoimage.php)** - _native unicode + shortnames -> images (mixed input)_ This demo shows you how to take input containing both native unicode emoji and shortnames, and translate it into EmojiOne images for display. ### Meteor Conversion #### Template helpers ```handlebars My emoji {{> emojione ':beers:'}} text. ``` Or ```handlebars {{#emojione}}My emoji :beers: text.{{/emojione}} ``` ### Swift Conversion ```swift Emojione.transform(string: "Rocket.Chat: :rocket:") ``` ### Extras **[shortnameToUnicode(str)](https://demos.emojione.com/latest/shortnametounicode.html)** Change from shortnames to native unicode emoji. **[Shortname Autocomplete](https://demos.emojione.com/latest/autocomplete.html)** Easily add shortname autocomplete functionality to any text input on your page. **[ASCII Smiley Conversion](https://demos.emojione.com/latest/ascii-smileys.html)** With one quick step you can start converting common ASCII smileys to their corresponding images. **[Alternate Alt Tags](https://demos.emojione.com/latest/alternate-alt-tags.html)** Change from the native unicode emoji in the resulting alt tags to their shortnames instead. **[Live Preview Box](https://demos.emojione.com/latest/live-preview.html)** Display converted Emoji in a preview box as the user is typing. **[Conversion HTML Class](https://demos.emojione.com/latest/class-convert.html)** Stick a class of .emojione-convert on any HTML element and automatically convert native unicode emoji and/or shortnames to images after page load. **[Convert on Form Submission](https://demos.emojione.com/latest/convert-on-submit.html)** Converts unicode input to shortnames once the user submits the form. **[Sprites (PNG)](https://demos.emojione.com/latest/sprites-png.html)** With an additional CSS file you can use EmojiOne as resizable PNG sprites (up to 64x64). **[Sprites (SVG)](https://demos.emojione.com/latest/sprites-svg.html)** This sprite method requires no extra CSS, and is infinitely resizable.