JavaScript/jQuery、HTML、CSS 构建 Web IM 远程及时聊天通信程序

2020-05-22 16:09:00易采站长站整理

}).mouseout(function () {
window.clearTimeout(faceTimed);
faceTimed = window.setTimeout(function () {
$chat.find(“#face”).hide(150);
}, 700);
});
},
/***
* 发送消息工具栏按钮事件方法
**/
toolBarHandler: function () {
var $chat = $(this).parents(“.chat-main”);
var targetCls = $(this).attr(“class”);
if (targetCls == “face”) {
$chat.find(“#face”).show(150);
window.clearTimeout(faceTimed);
faceTimed = window.setTimeout(function () {
$chat.find(“#face”).hide(150);
}, 1000);
} else if (this.tagName == “DIV”) {
_opts.sendMessageStyle.setStyle(targetCls);
} else if (this.tagName == “SELECT”) {
_opts.sendMessageStyle.setStyle($(this).attr(“name”), $(this).val());
if ($(this).attr(“name”) == “color”) {
$(this).css(“background-color”, $(this).val());
}
}
// 设置sendMessage iframe的style css
_opts.writeSendStyle();
},
// 设置sendMessage iframe的style css
writeSendStyle: function () {
var styleTpl = _opts.sendMessageStyle.getStyleTpl();
var styleEL = [‘<style type=”text/css”>body{‘, styleTpl,’}</style>’].join(“”);
$(“body”).find(“iframe[name^=’sendMessage’]”).each(function () {
var $head = $(this.contentWindow.document).find(“head”);
if ($head.find(“style”).size() > 1) {
$head.find(“style:gt(0)”).remove();
}
if (styleTpl) {
$head.append(styleEL);
}
});
},
isMobileClient: function (receiver) {
var moblieClients = [“iphone”, “ipad”, “ipod”, “wp7”, “android”, “blackberry”, “Spark”, “warning”, “symbian”];
var flag = false;
for (var i in moblieClients) {
if (~receiver.indexOf(moblieClients[i])) {
return true;
}
}
return false;
},
// 聊天界面html元素
chatLayoutTemplate: function (userJID, sender, receiver, product, flag) {
var display = “”;
if (flag) {
display = “style=’display: none;'”;
}
return [
‘<div class=”chat-main” id=”‘, userJID,
‘” sender=”‘, sender, ‘” receiver=”‘, receiver, ‘”>’,
‘<div id=”chat”><div class=”radius”>’,
‘<table>’,
‘<tr>’,
‘<td colspan=”3″ class=”title”></td>’,
‘</tr>’,
‘<tr>’,
‘<td class=”receive-message”>’,
‘<iframe name=”receiveMessage’, userJID,'” frameborder=”0″ width=”100%” height=”100%”></iframe>’,