
[英]how to add a list of all the clients connected on a chat application in Java?
[英]How to add smiley feature in Chat application in java?
在我的聊天应用程序中,我需要添加笑脸功能吗? 我怎样才能做到这一点?
我们正在使用“Genesys”来创建我们的聊天应用程序?
可以添加表情吗???
请任何人都可以帮助我..
提前致谢...
你可以这样做Pure CSS/JS Emoticons
或者
您可以用图像替换文本。
查看示例、源代码和此jsFiddle 演示
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));
});
});
声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.