public
This commit is contained in:
parent
d7dbf16284
commit
51058a087d
@ -10,11 +10,11 @@ Emoji 表情组件
|
||||
### Install
|
||||
|
||||
```bash
|
||||
npm install @InvisibleFuture/emoji --save
|
||||
npm install satori-emoji --save
|
||||
```
|
||||
|
||||
```javascript
|
||||
import Emoji from '@InvisibleFuture/emoji'
|
||||
import Emoji from 'satori-emoji'
|
||||
|
||||
const emoji = new Emoji({
|
||||
input: document.querySelector('#input') , // 绑定的输入框元素(非必选)
|
||||
|
16
counter.js
16
counter.js
@ -1,16 +0,0 @@
|
||||
import Emoji from './emoji.js'
|
||||
|
||||
var emoji = new Emoji({})
|
||||
|
||||
export function setupCounter(element) {
|
||||
let counter = 0
|
||||
const setCounter = (count) => {
|
||||
counter = count
|
||||
element.innerHTML = `count is ${counter}`
|
||||
}
|
||||
element.addEventListener('click', () => {
|
||||
setCounter(++counter)
|
||||
emoji.show()
|
||||
})
|
||||
setCounter(0)
|
||||
}
|
@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 256"><path fill="#F7DF1E" d="M0 0h256v256H0V0Z"></path><path d="m67.312 213.932l19.59-11.856c3.78 6.701 7.218 12.371 15.465 12.371c7.905 0 12.89-3.092 12.89-15.12v-81.798h24.057v82.138c0 24.917-14.606 36.259-35.916 36.259c-19.245 0-30.416-9.967-36.087-21.996m85.07-2.576l19.588-11.341c5.157 8.421 11.859 14.607 23.715 14.607c9.969 0 16.325-4.984 16.325-11.858c0-8.248-6.53-11.17-17.528-15.98l-6.013-2.58c-17.357-7.387-28.87-16.667-28.87-36.257c0-18.044 13.747-31.792 35.228-31.792c15.294 0 26.292 5.328 34.196 19.247l-18.732 12.03c-4.125-7.389-8.591-10.31-15.465-10.31c-7.046 0-11.514 4.468-11.514 10.31c0 7.217 4.468 10.14 14.778 14.608l6.014 2.577c20.45 8.765 31.963 17.7 31.963 37.804c0 21.654-17.012 33.51-39.867 33.51c-22.339 0-36.774-10.654-43.819-24.574"></path></svg>
|
Before Width: | Height: | Size: 995 B |
23
package.json
23
package.json
@ -1,7 +1,6 @@
|
||||
{
|
||||
"name": "emoji",
|
||||
"private": true,
|
||||
"version": "0.0.0",
|
||||
"name": "satori-emoji",
|
||||
"version": "1.0.1",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
@ -10,5 +9,21 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"vite": "^3.0.7"
|
||||
}
|
||||
},
|
||||
"description": "Emoji 表情组件",
|
||||
"main": "emoji.js",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/InvisibleFuture/emoji.git"
|
||||
},
|
||||
"keywords": [
|
||||
"emoji",
|
||||
"input"
|
||||
],
|
||||
"author": "satori.love",
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://github.com/InvisibleFuture/emoji/issues"
|
||||
},
|
||||
"homepage": "https://github.com/InvisibleFuture/emoji#readme"
|
||||
}
|
Loading…
Reference in New Issue
Block a user