-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrennsyuu4--2.21.html
50 lines (40 loc) · 1.02 KB
/
rennsyuu4--2.21.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!Doctype html>
<html lang="ja">
<head>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="https://cdn.mlkcca.com/v0.6.0/milkcocoa.js"></script>
<script src="chat.js"></script>
<style>
ul>li:first-child {
color: black;
font-size: 25px;
}
ul>li:nth-child(2n) {
color: blue;
}
ul>li:nth-child(2n):before {
content: "ユーザー名:"
}
</style>
</head>
<body>
<div>
<!-- 投稿者 -->
<div>
<p>ユーザ名</p>
<textarea name="" id="jsi-name" cols="10" rows="1"></textarea>
</div>
<!-- メッセージを打ち込む部分 -->
<div>
<p>内容</p>
<textarea name="" id="jsi-msg" cols="30" rows="4"></textarea>
</div>
</div>
<!-- メッセージを送る部分 -->
<button name="button" id="jsi-button">send message!</button>
<!-- チャット内容が動的に生成される部分 -->
<ul id="jsi-board" style="list-style:none;">
<li>〜チャット内容〜</li>
</ul>
</body>
</html>