可以用微信小程序,具体 *** 作步骤如下:
1、首先我们雹喊握在微信主页往下滑。
2、下滑之后就可以看到微信小程序的页面,点击三个点点的按钮。
3、这个时候就可以看到右上角有一个搜索按钮,点击。
4、这个时候会出来一个搜索框,在上面输入“emoji表情源庆符号大全”进行搜索。
5、点击第一个就是我们要找的小程序。
6、然后我们就可以看到这个小程序,里面有很多的emoji,随便选择自己喜欢的,点击即可复制。
7、返回到微渗颂信主页面,找到想给他发表情的这个人。
8、这个时候在输入框中直接粘贴,就可以粘贴刚刚复制好的emoji表情啦。
首先每个emoji 表情有保存到服务器,可以通过 URL 访问,如
http://....../em001
1.将带 emoji 标签复合文本字符串(如:你好,em001),分割成纯文本和 emoji 标签文本,并装进数组。方法如下
/**
根据说说内容,将文本、表情切分为数组
@param {string} content 说说源内容
*/
function messageContentArray (content) {
const reg = /\[em[2-4]+\d{3}\]/g
const emRegArr = content.match(reg)
// 没有表情,直接返回罩野世文本内容
if (!emRegArr) return [{type: 'text', content}]
const indexArr = []
const contentArr = []
// 递增取得所有表情index
let pos = content.indexOf(emRegArr[0])
for (let i = 1i <emRegArr.lengthi++) {
indexArr.push(pos)
pos = content.indexOf(emRegArr[i], pos + 1)
}
indexArr.push(pos)
indexArr.map((emIndex, i) =>{
// 首个为表情
if (emIndex === 0) {
contentArr.push({type: 'emotion', source: emRegArr[i]})
} else {
if (i === 0) {
// TODO:临时的处理方式,待观察内存占用情况
for (let index = 0index <emIndexindex++) {
物肢 contentArr.push({type: 'text', content: content[index]})
}
// contentArr.push({type: 'text', content: content.substr(0, emIndex)})
} else {
// 两个表情之间夹杂了文本
const preEmoLocation = indexArr[i - 1] + emRegArr[i - 1].length
const locationDiff = emIndex - preEmoLocation
if (locationDiff >0) {
for (let index = preEmoLocationindex <locationDiffindex++) {
contentArr.push({type: 'text', content: content[index]})
}
// contentArr.push({type: 'text', content: content.substr(preEmoLocation, locationDiff)})
}
}
contentArr.push({type: 'emotion', source: emRegArr[i]})
}
})
const lastLocation = indexArr[indexArr.length - 1] + emRegArr[emRegArr.length - 1].length
脊纯 if (content.length >lastLocation) {
// contentArr.push({type: 'text', content: content.substr(lastLocation, content.length - lastLocation)})
for (let index = lastLocationindex <content.lengthindex++) {
contentArr.push({type: 'text', content: content[index]})
}
}
return contentArr
}
2.然后在 view 标签,遍历数组
<View className="talk-content">
{contentArr.map((Citem, index) =>{
if (Citem.type === 'emotion') {
const str = Citem.source.substr(1, Citem.source.length-2)
return <Image key={`Emotion_${index}`} className="emoji" src={'http://'+str+'.jpg'} />
}
const isEnter = Citem.content === '\n'
if (isEnter) {
// hack Text 显示单个 \n 时,会有样式问题
return <View key={`Text_${index}`} />
}
return <Text key={`Text_${index}`} className="txt" >{Citem.content}</Text>
})}
</View>
微信公众号自定义菜单栏如何加emoji表情等图标这个问题我之前遇到过,挺容易解决的,接下来就跟大家讲讲应该怎么 *** 作:
工具:WIN10,小*蚂*蚁编辑器
第一步:搜索微信公众平台并进行登录账号;在左侧导航栏找到自定义菜单。(如下图所察闭乎示)
第二步:态键打开网页搜索emoji表情,选择自己想要的表情进行复制,然后粘贴到微信公众号后台即可。(如下图所示)
第三步:更改菜单栏之后一败悉定要记得保存并发布。(如下图所示)
以上就是解决微信公众号自定义菜单栏如何加emoji表情等图标问题的所有步骤啦,对你有用的话记得帮忙点赞点关注呀~
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)