成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

Vue.js如何模仿微信聊天窗口展示組件功能-創(chuàng)新互聯(lián)

這篇文章主要為大家展示了“Vue.js如何模仿微信聊天窗口展示組件功能”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“Vue.js如何模仿微信聊天窗口展示組件功能”這篇文章吧。

專注于為中小企業(yè)提供成都網(wǎng)站設(shè)計、成都網(wǎng)站建設(shè)服務(wù),電腦端+手機端+微信端的三站合一,更高效的管理,為中小企業(yè)吉隆免費做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動了成百上千企業(yè)的穩(wěn)健成長,幫助中小企業(yè)通過網(wǎng)站建設(shè)實現(xiàn)規(guī)模擴(kuò)充和轉(zhuǎn)變。

效果圖

Vue.js如何模仿微信聊天窗口展示組件功能

運行

# install dependencies
npm install
# serve with hot reload at localhost:8080
npm run dev
# build for production with minification
npm run build

介紹

  • 支持文本和圖片的展示(后續(xù)將支持對語音類的展示)。

  • 支持滾動加載數(shù)據(jù),其中滾動加載依賴我另外一個組件scrollLoader.vue(《Vue.js上下滾動加載組件》)。

  • 支持QQ表情,為了能使用表情請全局注冊指令v-emotion,我在main.js做了實現(xiàn);代碼如下:

function toEmotion(text, isNoGif){
 var list = ['微笑', '撇嘴', '色', '發(fā)呆', '得意', '流淚', '害羞', '閉嘴', '睡', '大哭', '尷尬', '發(fā)怒', '調(diào)皮', '呲牙', '驚訝', '難過', '酷', '冷汗', '抓狂', '吐', '偷笑', '愉快', '白眼', '傲慢', '饑餓', '困', '驚恐', '流汗', '憨笑', '大兵', '奮斗', '咒罵', '疑問', '噓', '暈', '折磨', '衰', '骷髏', '敲打', '再見', '擦汗', '摳鼻', '鼓掌', '糗大了', '壞笑', '左哼哼', '右哼哼', '哈欠', '鄙視', '委屈', '快哭了', '陰險', '親親', '嚇', '可憐', '菜刀', '西瓜', '啤酒', '籃球', '乒乓', '咖啡', '飯', '豬頭', '玫瑰', '凋謝', '示愛', '愛心', '心碎', '蛋糕', '閃電', '炸彈', '刀', '足球', '瓢蟲', '便便', '月亮', '太陽', '禮物', '擁抱', '強', '弱', '握手', '勝利', '抱拳', '勾引', '拳頭', '差勁', '愛你', 'NO', 'OK', '愛情', '飛吻', '跳跳', '發(fā)抖', '慪火', '轉(zhuǎn)圈', '磕頭', '回頭', '跳繩', '揮手', '激動', '街舞', '獻(xiàn)吻', '左太極', '右太極', '嘿哈', '捂臉', '奸笑', '機智', '皺眉', '耶', '紅包', '雞'];
 if (!text) {
  return text;
 }
 text = text.replace(/\[[\u4E00-\u9FA5]{1,3}\]/gi, function(word){
  var newWord = word.replace(/\[|\]/gi,'');
  var index = list.indexOf(newWord);
  var backgroundPositionX = -index * 24
  var imgHTML = '';
  if(index<0){
   return word;
  }
  if (isNoGif) {
   if(index>104){
    return word;
   }
   imgHTML = `<i class="static-emotion" ></i>`
  } else {
   var path = index>104 ? '/img' : 'https://res.wx.qq.com/mpres/htmledition/images/icon';
   imgHTML = `![](${path}/emotion/${index}.gif)`
  }
  return imgHTML;
 });
 return text;
}
Vue.directive('emotion', {
 bind: function (el, binding) {
  el.innerHTML = toEmotion(binding.value)
 }
});

如何使用?

參數(shù)已經(jīng)在組件中做了說明,并在App.vue中做了演示:

參數(shù)和說明:

微信聊天可視化組件

依賴scrollLoader組件, 依賴指令v-emotion(實現(xiàn)請查看main.js)

參數(shù):

width 組件寬度,默認(rèn)450

wrapBg 外層父元素背景顏色,默認(rèn)#efefef

maxHeight 展示窗口最高高度, 默認(rèn)900

contactAvatarUrl 好友頭像url

ownerAvatarUrl 微信主人頭像url

ownerNickname 微信主人昵稱

getUpperData (必需)當(dāng)滾動到上方時加載數(shù)據(jù)的方法,返回值要為Promise對象,resolve的結(jié)構(gòu)同data

getUnderData (必需)當(dāng)滾動到下方時加載數(shù)據(jù)的方法,返回值同上

data (必需)傳入初始化數(shù)據(jù), 結(jié)構(gòu)如下:

[{
 direction: 2, //為2表示微信主人發(fā)出的消息,1表示聯(lián)系人
 id: 1, //根據(jù)這個來排序消息
 type: 1, //1為文本,2為圖片
 content: '你好!![呲牙]', //當(dāng)type為1時這里是文本消息,當(dāng)type2為2時這里要存放圖片地址;后續(xù)會支持語音的顯示
 ctime: new Date().toLocaleString() //顯示當(dāng)前消息的發(fā)送時間
},
{
 direction: 1,
 id: 2,
 type: 1,
 content: '你也好。[害羞]',
 ctime: new Date().toLocaleString()
}]

完整的使用實例

效果:https://doterlin.github.io/vue-wxChat/

代碼:

//主文件,對wxChat的用法做示例
<template>
<wxChat 
 :data="wxChatData"
 :showShade="false"
 contactNickname="簡叔"
 :getUpperData="getUpperData"
 :getUnderData="getUnderData"
 :ownerAvatarUrl="ownerAvatarUrl"
 :contactAvatarUrl="contactAvatarUrl"
 :width="420">
</wxChat>
</template>
<script>
import wxChat from './components/wxChat.vue'
export default {
 name: 'app',
 data () {
 return {
  upperTimes: 0,
  underTimes: 0,
  upperId: 0,
  underId: 6,
  ownerAvatarUrl: './src/assets/avatar1.png',
  contactAvatarUrl: './src/assets/avatar2.png',
  wxChatData: [{
  direction: 2,
  id: 1,
  type: 1,
  content: '你好!![呲牙]',
  ctime: new Date().toLocaleString()
  },
  {
  direction: 1,
  id: 2,
  type: 1,
  content: '你也好。[害羞]',
  ctime: new Date().toLocaleString()
  },
  {
  direction: 2,
  id: 3,
  type: 1,
  content: '這是我的簡歷頭像:',
  ctime: new Date().toLocaleString()
  },
  {
  direction: 2,
  id: 4,
  type: 2,
  content: './src/assets/wyz.jpg',
  ctime: new Date().toLocaleString()
  },
  {
  direction: 1,
  id: 5,
  type: 1,
  content: '你開心就好。[微笑]',
  ctime: new Date().toLocaleString()
  }]
 }
 },
 components:{wxChat},
 methods:{
 //向上滾動加載數(shù)據(jù)
 getUpperData(){
  var me = this;
  // 這里為模擬異步加載數(shù)據(jù)
  // 實際上你可能要這么寫:
  // return axios.get('xxx').then(function(result){
  //  return result; //result的格式需要類似下面resolve里面的數(shù)組
  // })
  return new Promise(function(resolve){
  setTimeout(function(){
   //模擬加載完畢
   if(me.upperTimes>3){
   return resolve([]);
   }
   //加載數(shù)據(jù)
   resolve([{
    direction: 2,
    id: me.upperId-1,
    type: 1,
    content: '向上滾動加載第 ' + me.upperTimes +' 條!',
    ctime: new Date().toLocaleString()
   },
   {
    direction: 1,
    id: me.upperId-2,
    type: 1,
    content: '向上滾動加載第 ' + me.upperTimes +' 條!',
    ctime: new Date().toLocaleString()
   }]
   )
  }, 1000);
  me.upperId= me.upperId+2;
  me.upperTimes++;
  })
 },
 getUnderData(){
  var me = this;
  //意義同getUpperData()
  return new Promise(function(resolve){
  setTimeout(function(){
   //模擬加載完畢
   if(me.underTimes>3){
   return resolve([]);
   }
   //加載數(shù)據(jù)
   resolve(
   [{
    direction: 1,
    id: me.underId+1,
    type: 1,
    content: '向下滾動加載第 ' + me.underTimes +' 條!',
    ctime: new Date().toLocaleString()
   },
   {
    direction: 2,
    id: me.underId+2,
    type: 1,
    content: '向下滾動加載第 ' + me.underTimes +' 條!',
    ctime: new Date().toLocaleString()
   }]
   )
  }, 1000);
  me.underId = me.underId+2;
  me.underTimes++;
  })
 }
 }
}
</script>
<style>
*{
 margin: 0;
 padding: 0;
}
#app {
 font-family: 'Avenir', Helvetica, Arial, sans-serif;
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
 text-align: center;
 color: #2c3e50;
 margin-top: 60px;
}
h2, h3 {
 font-weight: normal;
}
ul {
 list-style-type: none;
 padding: 0;
}
li {
 display: inline-block;
}
</style>

以上是“Vue.js如何模仿微信聊天窗口展示組件功能”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)成都網(wǎng)站制作公司行業(yè)資訊頻道!

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機、免備案服務(wù)器”等云主機租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。

網(wǎng)頁題目:Vue.js如何模仿微信聊天窗口展示組件功能-創(chuàng)新互聯(lián)
鏈接URL:http://jinyejixie.com/article32/dijipc.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站維護(hù)、App設(shè)計、標(biāo)簽優(yōu)化、自適應(yīng)網(wǎng)站、Google、移動網(wǎng)站建設(shè)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

網(wǎng)站建設(shè)網(wǎng)站維護(hù)公司
金山区| 庆元县| 平武县| 建阳市| 余庆县| 积石山| 沭阳县| 沁水县| 三原县| 福泉市| 乐业县| 兴安盟| 和田县| 吉安县| 黄骅市| 平果县| 杭州市| 丘北县| 敦化市| 祥云县| 济南市| 兴文县| 清徐县| 夏津县| 家居| 于都县| 潼关县| 祁连县| 江都市| 防城港市| 青浦区| 无锡市| 池州市| 伊春市| 南汇区| 绥滨县| 松江区| 车险| 淳安县| 临江市| 富川|