国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

基于javascript制作微信聊天面板

2019-11-20 10:25:21
字體:
來源:轉載
供稿:網友

本文實例分享了javascript制作微信聊天面板的相關代碼,具體內容如下

先上圖吧

點擊頭像更換說話對象,簡單說下實現原理,html中創建一個ul用于存放所有說話的內容,對話內容是有javascript 動態生成,

主要難點:先布局好css,當時奧巴馬發送時候,讓這個li有浮動,當是小胖時候,讓這個li左浮動。

代碼:

<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>模擬短信發送</title> <style>  * {   margin: 0;   padding: 0;   list-style: none;   font-family: '微軟雅黑'  }  #container {   width: 450px;   height: 780px;   background: #eee;   margin: 80px auto 0;   position: relative;   box-shadow: 20px 20px 55px #777;  }  .header {   background: #000;   height: 34px;   color: #fff;   line-height: 34px;   font-size: 20px;   padding: 0 10px;  }  .footer {   width: 430px;   height: 50px;   background: #666;   position: absolute;   bottom: 0;   padding: 10px;  }  .footer input {   width: 275px;   height: 45px;   outline: none;   font-size: 20px;   text-indent: 10px;   position: absolute;   border-radius: 6px;   right: 80px;  }  .footer span {   display: inline-block;   width: 62px;   height: 48px;   background: #ccc;   font-weight: 900;   line-height: 45px;   cursor: pointer;   text-align: center;   position: absolute;   right: 10px;   border-radius: 6px;  }  .footer span:hover {   color: #fff;   background: #999;  }  #icon {   display: inline-block;   background: red;   width: 60px;   height: 60px;   border-radius: 30px;   position: absolute;   bottom: 6px;   left: 14px;   cursor: pointer;   overflow: hidden;  }  img {   width: 60px;   height: 60px;  }  .content {   font-size: 20px;   width: 435px;   height: 662px;   overflow: auto;   padding: 5px;  }  .content li {   margin-top: 10px;   padding-left: 10px;   width: 412px;   display: block;   clear: both;   overflow: hidden;  }  .content li img {   float: left;  }  .content li span{   background: #7cfc00;   padding: 10px;   border-radius: 10px;   float: left;   margin: 6px 10px 0 10px;   max-width: 310px;   border: 1px solid #ccc;   box-shadow: 0 0 3px #ccc;  }  .content li img.imgleft {    float: left;   }  .content li img.imgright {    float: right;   }  .content li span.spanleft {    float: left;   background: #fff;  }  .content li span.spanright {    float: right;   background: #7cfc00;  } </style> <script>  window.onload = function(){   var arrIcon = ['img/1.jpg','img/2.jpg'];   var num = 0;  //控制頭像改變   var iNow = -1; //用來累加改變左右浮動   var icon = document.getElementById('icon').getElementsByTagName('img');   var btn = document.getElementById('btn');   var text = document.getElementById('text');   var content = document.getElementsByTagName('ul')[0];   var img = content.getElementsByTagName('img');   var span = content.getElementsByTagName('span');   icon[0].onclick = function(){    if(num==0){     this.src = arrIcon[1];     num = 1;    }else if(num==1){     this.src = arrIcon[0];     num = 0;    }       }   btn.onclick = function(){    if(text.value ==''){     alert('發送內容不能為空');    }else {     content.innerHTML += '<li><img src="'+arrIcon[num]+'"><span>'+text.value+'</span></li>';     iNow++;     if(num==0){      img[iNow].className += 'imgright';      span[iNow].className += 'spanright';     }else {      img[iNow].className += 'imgleft';      span[iNow].className += 'spanleft';     }     text.value = '';    }   }  } </script></head><body> <div id="container">  <div class="header">   <span style="float: left;">白超華-博客園</span>   <span style="float: right;">20:30</span>  </div>  <ul class="content"></ul>  <div class="footer">   <div id="icon">    <img src="img/1.jpg" alt="">   </div>   <input id="text" type="text" placeholder="說點什么吧...">   <span id="btn">發送</span>  </div> </div></body></html>

本文已被整理到了《JavaScript微信開發技巧匯總》,歡迎大家學習閱讀。

為大家推薦現在關注度比較高的微信小程序教程一篇:《微信小程序開發教程》小編為大家精心整理的,希望喜歡。

希望本文所述對大家學習javascript程序設計有所幫助。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 平昌县| 富宁县| 普宁市| 乐陵市| 汕头市| 泰和县| 林甸县| 乌兰浩特市| 额敏县| 南和县| 海兴县| 西盟| 尚义县| 九龙城区| 睢宁县| 池州市| 高平市| 和龙市| 霍州市| 临澧县| 龙岩市| 沙雅县| 建阳市| 黄平县| 迁西县| 汾阳市| 舞钢市| 舟山市| 黄陵县| 平罗县| 化隆| 富平县| 茶陵县| 南宫市| 顺平县| 商水县| 江孜县| 建平县| 屯昌县| 习水县| 永平县|