基于vue2.x实现的即时通讯程序仿微信聊天8开发聊天页面表情包静态页面以及引入表情包实现表情包信息发送

这节课来实现 点击 底部 【笑脸】弹出选择表情包界面的静态页面布局,如下图

image.png
  • 找到【笑脸】,给他的父级元素绑定一个点击事件@click="showEmo"
image.png
  • 然后在methods里映射这个方法
methods:{
  showEmo() {
      
    }
}
  • 利用vant组件库的popup组件来实现,下面是dom元素
 <!-- popup 表情包 -->
      <van-popup v-model="show" position="bottom" style="height: 30%">
        <div class="Emoinput">
          <div class="left">
            <van-icon name="http://erkong.ybc365.com/5f28d202201141346467740.png" size="25"></van-icon>
          </div>
          <div class="right">
            <van-search v-model="value" placeholder="请输入要发送的消息">
            <template #left-icon>
              <van-icon name=""></van-icon>
            </template>
          </van-search>
          </div>
        </div>
        <div class="emobox">
          <ul>
            <li v-for="(item, index) in 28" :key="index">
              <img src="http://yyds.it98k.cn/images/1.gif" alt="" />
            </li>
          </ul>
          <!-- 发送按钮 -->
          <div class="sendBtn">
            <van-button icon="arrow-left" style="margin-right: 15px;" type="primary" size="small">清空</van-button>
            <van-button type="primary" size="small">发送</van-button>
          </div>
        </div>
      </van-popup>
  • 下面是css
.emobox {
    height: calc(100% - 100px);
    padding: 12px;
    box-sizing: border-box;
    overflow: auto;
    ul {
      display: flex;
      flex-wrap: wrap;

      li {
        width: 90px;
        height: 90px;
        margin-right: 50px;
        img {
          width: 100%;
          height: 100%;
        }
      }
    }
    .sendBtn {
      position: fixed;
      right: 20px;
      bottom: 0px;
      background: white;
      display: flex;
      align-items: center;
      padding: 20px 0px 20px 65px;
      border-radius: 10px;
    }
  }
  .Emoinput {
    display: flex;
    align-items: center;
    padding: 0 20px;
    .right{
      flex: 1;
      ::v-deep .van-search{
       width: 100%;
      }
    }
  }
  • 记得在data中定义show默认为false
daa:{
  return{
    show:false
  }
}
  • 然后在点击方法showEmo里,点击将show这个变量设置为true
methods:{
  showEmo() {
      this.show = true
    }
}
  • 最终实现该静态页面,但是要记得,使用到的vant组件要在plugins/vant.js内注册

image.png
  • 下面在实现把 【所有表情包】引入过来

  • 新建组件Emotion
  • components文件夹下新建 Emotion文件夹,里面新建Emotion.vueindex.vue
  • Emotion.vue

<template>
  <div class="ly-emotion">
    <slot></slot>
  </div>
</template>

<script>
export default {
  name: 'ly-emotion',
  mounted() {
    const name = this.$el.innerHTML
    const list = [
      '大笑',
      '炫耀',
      '倒霉',
      '跳舞',
      '钉钉子',
      '委屈',
      '失落',
      '得意',
      '冲',
      '乌鸦',
      '石化了',
      '忙死了',
      '爱你',
      '啊喂',
      '热化了',
      '蜗牛',
      '冷',
      '凄凉',
      '有点热',
      '吃饱了',
      '哼',
      '打一架',
      '飞吻',
      '冷汗',
      '猪头',
      '拜拜',
      '乌鸦',
      '再见',
      '潇洒',
      '酷',
      'emo',
      '干杯',
      '跳舞',
      '委屈',
      '酷',
      '大笑'
    ]
    // console.log(name);
    let index = list.indexOf(name)
    // let imgHTML = `<img src="https://res.wx.qq.com/mpres/htmledition/images/icon/emotion/${index}.gif">`
    let imgHTML = `<img src="https://qiniu.it98k.cn/mhxy/${index+1}.gif">`
    this.$nextTick(() => {
      this.$el.innerHTML = imgHTML
    })
  }
}
</script>
<style scoped>

</style>

  • index.vue

<template>
    <div class="emotion-box" :style="{ height: height  }">
      <div class="emotion-box-line" v-for="(line, i) in list" :key="i">
        <emotion class="emotion-item" v-for="(item, i) in line" :key="i" @click.native="clickHandler(item)">{{
          item
        }}</emotion>
      </div>
    </div>
</template>

<script>
import Emotion from './Emotion'
export default {
  props: {
    height: {
      
    }
  },
  data() {
    return {
      list: [
        ['大笑', '炫耀', '倒霉', '跳舞'],
        ['钉钉子', '委屈', '失落', '得意'],
        ['冲', '乌鸦', '石化了', '忙死了'],
        ['爱你', '啊喂', '热化了', '蜗牛'],
        ['冷', '凄凉', '有点热', '吃饱了'],
        ['哼', '打一架', '飞吻', '冷汗'],
        ['猪头', '拜拜', '乌鸦', '再见'],
        ['潇洒', '酷', 'emo', '干杯'],
        ['跳舞', '委屈', '酷','大笑']
      ]
    }
  },
  methods: {
    clickHandler(i) {
      let emotion = `#${i};`
      this.$emit('emotion', emotion)
    }
  },
  components: {
    Emotion
  }
}
</script>
<style scoped lang="scss">
.emotion-box {
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  overflow-y: auto;
}
.emotion-box-line {
  display: flex;
  justify-content: space-around;
  ::v-deep img {
    width: 100px;
    height: 100px;
    object-fit: contain;
  }
}
</style>
  • 然后在chatDetail聊天页面引入Emotion组件
import Emotion from '@/components/Emotion';
  • 注册一下
 components: {Emotion },
  • 然后使用这个组件 ,并在methods里映射自定义事件
image.png
  • methods

handleEmotion(i) {
      this.value += i
 },
  • 这样就实现了表情包的引入

image.png
  • 下面给发送按钮直接调用send方法
image.png
  • 再给send方法里,设置this.show = false,在发送表情包后,隐藏弹窗
image.png
  • 可以看到,发送出去的是表情包的标识,我们可以使用 正则表达式 来匹配 标识 映射 img图片
  • 现在methods里定义一个方法
methods:{
   // 将匹配结果替换表情图片
    emotion(res) {
      let word = res.replace(/\#|\;/gi, '')
      const list = [
       '大笑',
      '炫耀',
      '倒霉',
      '跳舞',
      '钉钉子',
      '委屈',
      '失落',
      '得意',
      '冲',
      '乌鸦',
      '石化了',
      '忙死了',
      '爱你',
      '啊喂',
      '热化了',
      '蜗牛',
      '冷',
      '凄凉',
      '有点热',
      '吃饱了',
      '哼',
      '打一架',
      '飞吻',
      '冷汗',
      '猪头',
      '拜拜',
      '乌鸦',
      '再见',
      '潇洒',
      '酷',
      'emo',
      '干杯',
      '跳舞',
      '委屈',
      '酷',
      '大笑'
      ]
      let index = list.indexOf(word)
      return `<img src="https://qiniu.it98k.cn/mhxy/${index + 1}.gif" align="middle">`
    },
}
  • 然后修改模版渲染方式
image.png
 <div class="content">
            <p v-html="item.message.replace(/\#[\u4E00-\u9FA5]{1,3}\;/gi, emotion)"></p>
          </div>
  • 这样就实现了
image.png
  • 最后修改下 样式
.content{
      p{
        display: flex;
        align-items: center;
      }
      ::v-deep   img{
         width: 120px;
         height: 120px;
          object-fit: contain;
        }
    }
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,099评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,828评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,540评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,848评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,971评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,132评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,193评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,934评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,376评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,687评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,846评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,537评论 4 335
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,175评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,887评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,134评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,674评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,741评论 2 351

推荐阅读更多精彩内容