对聊天室外观和功能进行大改,添加使用表情包功能

This commit is contained in:
FJY
2017-11-19 22:58:26 +08:00
parent 6551c61a0b
commit 5e87ddf1ba
62 changed files with 349 additions and 167 deletions

View File

@@ -1,8 +1,8 @@
<%@ page contentType="text/html; charset=gb2312" language="java"
<%@ page contentType="text/html; charset=utf-8" language="java"
import="java.util.*"%>
<%@ page import="com.wgh.UserForm"%>
<%
request.setCharacterEncoding("gb2312");
request.setCharacterEncoding("utf-8");
%>
<%
Vector myuser = (Vector) application.getAttribute("myuser");
@@ -10,24 +10,24 @@
<link href="../css/bootstrap.css" rel="stylesheet">
<table class="table table-hover">
<tr>
<td height="32" align="center" class="word_orange disabled">欢迎来到VANTEN聊天室</td>
<td height="32" align="center" class="word_white disabled">欢迎来到VANTEN聊天室</td>
</tr>
<tr>
<td height="23" align="center"><a href="#" onclick="set('所有人')">所有人</a></td>
<td height="23" align="center"><a href="#" class="word_white" onclick="set('所有人')" >所有人</a></td>
</tr>
<%
for (int i = 0; i < myuser.size(); i++) {
UserForm mylist = (UserForm) myuser.elementAt(i);
%>
<tr>
<td height="23" align="center"><a href="#"
onclick="set('<%=mylist.username%>')"><%=mylist.username%></a></td>
<td height="23" align="center" class="word_white"><a href="#"
onclick="set('<%=mylist.username%>')" class="word_white"><%=mylist.username%></a></td>
</tr>
<%
}
%>
<tr>
<td height="30" align="center">当前在线[<font color="#FF6600"><%=myuser.size()%></font>]人
<td height="30" align="center" color="#fff">当前在线[<font color="#fff"><%=myuser.size()%></font>]人
</td>
</tr>
</table>