在我的聊天应用程序中,我需要添加笑脸功能吗?我怎样才能做到这一点?
我们正在使用“Genesys”来创建我们的聊天应用程序吗?
是否可以添加笑脸???
请有人帮助我..
提前致谢...
答案 0 :(得分:6)
您可以执行此操作Pure CSS/JS Emoticons
或
您可以用图片替换文字。
查看示例,来源和 jsFiddle Demonstration
var emoticons = {
smile: '<img src="path/smile.gif" />',
sad: '<img src="path/sad.gif" />',
wink: '<img src="path/wink.gif" />'
};
var patterns = {
smile: /:-\)/gm,
sad: /:-\(/gm,
wink: /;-\)/gm
};
$(document).ready(function() {
$('p').each(function() {
var $p = $(this);
var html = $p.html();
$p.html(html.replace(patterns.smile, emoticons.smile).
replace(patterns.sad, emoticons.sad).
replace(patterns.wink, emoticons.wink));
});
});