本文主要為大家詳細介紹了jquery仿微信聊天介面的相關程式碼,具有一定的參考價值,有興趣的夥伴們可以參考一下,希望能幫助大家。
先來看看我們的效果圖。
這個顏色可能搭配的有些不合適,但基本功能大都實現了。就是你和你同桌對話,你發的訊息在你的左側,而在他設備的右側。
先寫好整體的框架,在一個大容器中放兩個盒子,分別是左邊和右邊的介面。然後每個盒子裡包含了三大部分:頭部、內容區、和底部。只要寫好一側,另一側進行貼上複製就可以了。
先定義一個大的
來盛裝左右兩個盒子。
<p id = "main"> //左侧聊天界面 <p id = "box"> <p id = "top"><span>你</span></p> <p id = "content"> <select multiple="multiple" id="leftcontent"> </select> </p> <p id = "bottom"> <input type = "text" class = "sendText" id = "leftText" /> <input type = "button" id = "leftdBtn" class="sendBtn" value = "发送"> </p> </p> //右侧聊天界面 <p id = "box"> <p id = "top"><span>同桌</span></p> <p id = "content"> <select multiple="multiple" id="rightcontent"> </select> </p> <p id = "bottom"> <input type = "text" class = "sendText" id = "rightText" /> <input type = "button" id = "rightBtn" class="sendBtn" value = "发送"> </p> </p> </p>
首先這兩個盒子的程式碼不是複製貼上就直接可以的。也必須注意以下不同:
<p id = "content"> <select multiple="multiple" id="rightcontent"> </select> </p>
select中的id得不同。我們通常都是
option1
option2
option3
這樣使用。而在這裡使用select標籤是當你和你同桌聊了一屏的天時,它有滾動條來 上下滑動看你們都聊了些什麼。再上面的基礎增加一些css樣式,這樣介面效果就出來了。
接下來就是要寫jquery程式碼的時候了。首先想一下你在你這邊說的話既要出現在你的設備右側,又要出現在你同桌設備的左側?
我們先對你的介面左側進行發送訊息控制,在寫了文字之後,按下發送按鈕讓它出現在你介面的右側,同時也出現在你同桌裝置的左側。
我們要按照以下步驟來實作:
1。取得你輸入的文字方塊中的內容。
2。產生一個option標籤。
2.1 產生標籤的樣式即產生的span標籤在你的裝置的右邊進行定位並 顯示。
2.2 對產生的標籤進行內容的插入即插入文字方塊中的內容
3。將option標籤追加到你的select。
4。將option標籤在你同桌設備的左側進行定位顯示。
5。清除文字方塊中的內容。
function sendLeft(){ //1.获得你输入的文本框中的内容。 var text = $("#leftText").val(); //2。生成一个span标签。 var option = $("`<option></option>`"); // 2.1 生成标签的样式即生成的span标签在你的设备的右侧进行定位并显示。 var len = text.length; option.css("width", len * 15 + "px"); option.css("marginLeft", 350 - len * 15 - 60 + "px"); //2.2 生成标签的内容 option.html(text); //3. 将内容追加到select中。 $("#leftcontent").append(option); //4. 追加生成的标签(右侧) var option1 = $("<option></option>"); option1.addClass("optionRight"); option1.css("width", len * 15 + "px"); option1.css("marginLeft", 10 +"px"); option1.html(text); $("#rightcontent").append(option1); //5. 清除文本框的内容 $("#leftText").val(""); } }
同樣再對你同桌的裝置方進行顯示的時候,和左側的大同小異。
自己寫一下就可以。
在寫了左側和右側發送的訊息函數之後,此時還不能進行訊息發送,因為還沒有進行事件綁定。首先發送訊息有兩種方式:
①。按鈕傳送
按鈕傳送就需要為按鈕綁定事件
$("#leftdBtn").bind("click", sendLeft); $("#rightBtn").bind("click", sendRight);
②。回車發送
$(document).keydown(function(event){ var txt1 = $("#leftText").val(); var txt2 = $("#rightText").val() if(event.keyCode == 13){ if( txt1.trim() != ""){ sendLeft(); } if(txt2.trim() != ""){ sendRight(); } } });
最後附上完整的原始碼:
<!DOCTYPE html> <html> <head> <meta charset = "utf-8"/> <title>模仿微信聊天</title> <script type="text/javascript" src = "http://libs.baidu.com/jquery/1.9.0/jquery.js"></script> <style type="text/css"> *{ margin: 0px; padding: 0px; } #main{ width: 90%; margin: 10px auto; } #box{ float: left; margin:20px 120px; } #top{ width: 310px; padding: 10px 20px; color: white; background-color: lightgreen; font-size: 18px; font-family: "微软雅黑"; font-weight: bold; } #content{ background-color: white; } select{ width: 350px; height: 470px; background-color: white; padding: 10px; border:2px solid red; } #bottom{ width: 310px; background-color: red; padding: 10px 20px; } .sendText{ height: 25px; width: 210px; font-size: 16px; } .sendBtn{ width: 65px; height: 30px; float: right; background-color: gold; color: white; text-align: center; font-size: 18px; } span{ background-color: lightgreen; color: #000; padding: 10px 30px; } option{ padding: 5px 10px; margin-top:10px; border-radius:5px; width: 10px; min-height: 20px; } .optionRight{ background-color: lightgreen; } .optionLeft{ background-color: lightblue; } </style> <script> $(function(){ $("#leftdBtn").bind("click", sendLeft); $("#rightBtn").bind("click", sendRight); function sendLeft(){ //1. 获取输入框中的内容 var text = $("#leftText").val(); //2. 生成标签 var option = $("<option></option>"); option.addClass("optionLeft"); //2.1 生成标签的样式 var len = text.length; //option.css("width", len * 15 + "px","marginLeft", 350 - len * 15 - 60 + "px") option.css("width", len * 15 + "px"); option.css("marginLeft", 350 - len * 15 - 60 + "px"); //2.2 生成标签的内容 option.html(text); //3. 将内容追加到select中。 $("#leftcontent").append(option); //4. 追加生成的标签(右侧) var option1 = $("<option></option>"); option1.addClass("optionRight"); option1.css("width", len * 15 + "px"); option1.css("marginLeft", 10 +"px"); option1.html(text); $("#rightcontent").append(option1); //5. 清除文本框的内容 $("#leftText").val(""); } function sendRight(){ //1. 获取输入框中的内容 var text = $("#rightText").val(); //2. 生成标签 var option = $("<option></option>"); option.addClass("optionLeft"); //2.1 生成标签的样式 var len = text.length; //option.css("width", len * 15 + "px","marginLeft", 350 - len * 15 - 60 + "px") option.css("width", len * 15 + "px"); option.css("marginLeft", 350 - len * 15 - 60 + "px"); //2.2 生成标签的内容 option.html(text); //3. 将内容追加到select中。 $("#rightcontent").append(option); //4. 追加生成的标签(右侧) var option1 = $("<option></option>"); option1.addClass("optionRight"); option1.css("width", len * 15 + "px"); option1.css("marginLeft", 10 +"px"); option1.html(text); $("#leftcontent").append(option1); $("#rightText").val(""); } $(document).keydown(function(event){ var txt1 = $("#leftText").val(); var txt2 = $("#rightText").val() if(event.keyCode == 13){ if( txt1.trim() != ""){ sendLeft(); } if(txt2.trim() != ""){ sendRight(); } } }); }) </script> </head> <body> <p id = "main"> <p id = "box"> <p id = "top"><span>你</span></p> <p id = "content"> <select multiple="multiple" id="leftcontent"> </select> </p> <p id = "bottom"> <input type = "text" class = "sendText" id = "leftText" /> <input type = "button" id = "leftdBtn" class="sendBtn" value = "发送"> </p> </p> <p id = "box"> <p id = "top"><span>同桌</span></p> <p id = "content"> <select multiple="multiple" id="rightcontent"> </select> </p> <p id = "bottom"> <input type = "text" class = "sendText" id = "rightText" /> <input type = "button" id = "rightBtn" class="sendBtn" value = "发送"> </p> </p> </p> </body> </html>
相關推薦:
以上是jquery仿微信聊天介面實例分享的詳細內容。更多資訊請關注PHP中文網其他相關文章!