PicMo

JavaScript 表情符号拾取器。任何应用程序,任何框架。「JavaScript emoji picker. Any app, any framework.」

Github星跟蹤圖

Emoji Button

Vanilla JavaScript emoji picker 😎

Screenshot

Screenshot

Demo and Documentation

https://emoji-button.js.org

Features

  • 💻 Vanilla JS, use with any framework
  • 😀 Use native or Twemoji emojis
  • 🔎 Emoji search
  • 👍🏼 Skin tone variations
  • ⏱ Recently used emojis
  • ⌨️ Fully keyboard accessible
  • 🎨 Dark, light, and auto themes
  • ⚙️ Add your own custom emoji images
  • 🧩 Extend functionality with plugins

Browser support

Emoji Button is supported on all modern browsers supporting the latest JavaScript features. Internet Explorer is not supported.

Installation

If you are using a package manager like yarn or npm, you can install Emoji Button directly from the npm registry:

npm install @joeattardi/emoji-button

Basic usage

First, you'll need a trigger element. This is typically a button, and is used to toggle the emoji picker.

<button id="emoji-trigger">Emoji</button>

Once you've added the trigger, you will need to import the EmojiButton class and create a new instance. Various options can be passed to the constructor, which is covered in the API documentation.

After constructing a picker, it can be shown by calling showPicker or togglePicker on it. These functions expect a reference element as a parameter. The picker is positioned relative to this reference element.

When an emoji is selected, the picker will emit an emoji event, passing an object containing data about the emoji that was selected. You can then handle the selected emoji however you want.

For more in depth documentation and examples, please visit https://emoji-button.js.org.

import { EmojiButton } from '@joeattardi/emoji-button';

const picker = new EmojiButton();
const trigger = document.querySelector('#emoji-trigger');

picker.on('emoji', selection => {
  // handle the selected emoji here
  console.log(selection.emoji);
});

trigger.addEventListener('click', () => picker.togglePicker(trigger));

Development

The easiest way to hack on Emoji Button is to use the documentation site. First, you should fork this repository.

Clone the forked repository

git clone https://github.com/your-name/emoji-button.git

From the repository root

Install dependencies

npm install
npm link

Start the build/watch loop

npm run build:watch

From the site subdirectory

Install dependencies

npm install
npm link @joeattardi/emoji-button

Start the documentation site

npm run develop

Open the page

http://localhost:8000

主要指標

概覽
名稱與所有者joeattardi/picmo
主編程語言TypeScript
編程語言JavaScript (語言數: 5)
平台
許可證MIT License
所有者活动
創建於2019-08-29 17:16:25
推送於2023-09-15 00:40:02
最后一次提交
發布數109
最新版本名稱v5.8.5 (發布於 2023-06-23 22:00:21)
第一版名稱0.5.0 (發布於 )
用户参与
星數1.2k
關注者數9
派生數117
提交數898
已啟用問題?
問題數214
打開的問題數8
拉請求數28
打開的拉請求數2
關閉的拉請求數26
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?