JavaScriptは簡易チャットダイアログを実現する(スクロールバーを追加)
今日はいくつかのJSのビデオを見ましたが、先生は簡単なチャットダイアログを作成する任務を設けました。Ajaxには触れていません。主にアバターを切り替えて両方のチャット状況をシミュレーションすることを実現しました。スタイルは比較的簡単で、後期に美化できます。
注意すべき点は、私が使用しているul liリストで要素の追加を実現します。このようにスタイルの設定に有利です。各ダイアログを追加すると、フローティングをクリアする必要があります。そうでないと、連続していくつかのダイアログが1行に表示されます。
コードは以下の通りです
以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。
注意すべき点は、私が使用しているul liリストで要素の追加を実現します。このようにスタイルの設定に有利です。各ダイアログを追加すると、フローティングをクリアする必要があります。そうでないと、連続していくつかのダイアログが1行に表示されます。
コードは以下の通りです
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title> </title>
<style type="text/css">
#container{
width: 250px;
height: 350px;
border:1px solid #7b6b6b;
margin: 0 auto;
position: relative;
}
#content{
width: 250px;
height: 300px;
border-bottom: 1px solid #ccc;
overflow-y: auto;
}
#content ul{
margin: 0;
padding: 0;
}
#Img{
width: 30px;
height: 30px;
position: absolute;
left: 10px;
top: 310px;
border-radius: 15px;
}
#txt{
margin: 0;
position: absolute;
left: 50px;
top: 315px;
border-radius: 2px;
border:1px solid #ccc;
width: 133px;
height: 18px;
}
#btn{
margin-right: 10px;
position: absolute;
margin: 0;
left: 197px;
top: 314px;
}
#edit{
background: #ece7e766;
width: 250px;
height: 50px;
}
.showTxt{
width: auto;
height: auto;
max-width: 230px;
background: #008000a8;
border:0;
font-size: 15px;
color: white;
padding: 5px;
border-radius: 2px;
word-break: break-all;
list-style: none;
margin-top: 5px;
display: list-item;
}
.left{
text-align: left;
margin-left: 50px;
float: left;
}
.right{
text-align: right;
margin-right: 50px;
float: right;
}
.showImg{
width: 26px;
height: 26px;
border-radius: 13px;
}
.leftImg{
left: 10px;
position: absolute;
}
.rightImg{
right: 10px;
position: absolute;
}
#scroll{
position: relative;
}
</style>
</head>
<body>
<div id="container">
<div id="content">
<div id="scroll">
<ul id="save"></ul>
</div>
</div>
<div id="edit">
<img src="1.jpg" id="Img">
<input type="text" name="" id="txt">
<input type="button" name="" value=" " id="btn">
</div>
</div>
<script type="text/javascript">
//
var oCont=document.getElementById('content');
var oImg=document.getElementById('Img');
var oTxt=document.getElementById('txt');
var oBtn=document.getElementById('btn');
var oSTxt=document.getElementsByClassName('showTxt');
var oSave=document.getElementById('save');
var num=0;
//
oImg.οnclick=function(){
num++;
if(num%2==0)
oImg.src='1.jpg';
else
oImg.src='2.jpg';
}
//
oBtn.οnclick= function(){
addCon();
}
function addCon(){
//
var newLi=document.createElement("li");
var newImg=document.createElement('img');
// ,
if(num%2==0){
//
newLi.innerHTML=oTxt.value;
newLi.className='showTxt right';
oSave.appendChild(newLi);
oTxt.value='';
//
newImg.src=oImg.src;
newImg.className='showImg rightImg';
newLi.appendChild(newImg);
//
var div = document.createElement('div');
div.style = 'clear:both';
oSave.appendChild(div);
}else{
newLi.innerHTML=oTxt.value;
newLi.className='showTxt left';
oSave.appendChild(newLi);
oTxt.value='';
newImg.src=oImg.src;
newImg.className='showImg leftImg';
newLi.appendChild(newImg);
var div = document.createElement('div');
div.style = 'clear:both';
oSave.appendChild(div);
}
}
</script>
</body>
</html>
ページの結果は図の通りです。以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。