Table of Contents
Scenario
1. Layout points
1. Triangular Arrow
2. Flex-flow changes the flow direction
3. Press and hold to center the suspended layer horizontally and vertically
JS circle
1. Touch event to realize sliding up to cancel voice input
Home WeChat Applet Mini Program Development WeChat applet development chat conversation component: can be used for online customer service chat conversations

WeChat applet development chat conversation component: can be used for online customer service chat conversations

Aug 01, 2018 am 10:15 AM

Use a small program to create a chat session, which can be used for online customer service chat sessions, etc. The following is a detailed explanation of the code. It is also very simple to operate. Let’s create it together.

WeChat applet development chat conversation component: can be used for online customer service chat conversations

Chat session

Scenario

Used for online customer service chat conversations, etc.

1. Layout points

1. Triangular Arrow

Draw a 26rpx*26rpx rectangle, rotate it 45 degrees, and then hide half of it to form a right triangle on the bubble.

1

2

<!-- 画三角箭头 -->

    <view class="triangle" style="{{item.myself == 1 ? &#39;right: 140rpx; background: #7ECB4B&#39; : &#39;left: 140rpx;&#39;}}"></view>

Copy after login

1

2

/* 三角箭头 */.body .triangle {    background: white;    width: 20rpx;    height: 20rpx;    margin-top: 26rpx;    transform: rotate(45deg);    position: absolute;

}

Copy after login

2. Flex-flow changes the flow direction

Take the values ​​['row' | 'row-reverse'] respectively, so that the avatar of the message sent by the other party is on the left, and the avatar of the message sent by yourself is on the left On the right.

1

<view class="body" style="flex-flow: {{item.myself == 0 ? &#39;row&#39; : &#39;row-reverse&#39;}}">

Copy after login

3. Press and hold to center the suspended layer horizontally and vertically

Option 1, js manual calculation

1

2

3

data: {    hud_top: (wx.getSystemInfoSync().windowHeight - 150) / 2,

    hud_left: (wx.getSystemInfoSync().windowWidth - 150) / 2,

}

Copy after login

1

<view class="hud-container" wx:if="{{status != state.normal}}" style="top: {{hud_top}}px; left: {{hud_left}}px;">

Copy after login

Option 2, pure css

1

2

/*悬浮提示框*/.hud-container {    position: fixed;    width: 150px;    height: 150px;    left: 50%;    top: 50%;    margin-left: -75px;    margin-top: -75px;

}

Copy after login

passed In comparison, Option 2 is better than Option 1

JS circle

1. Touch event to realize sliding up to cancel voice input

Press to appear suspended, slide up to exceed a certain displacement When a cancellation prompt appears, let go and cancel; if the swipe has not exceeded, let go and send

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

touchStart: function (e) {    // 触摸开始

    var startY = e.touches[0].clientY;    // 记录初始Y值

    this.setData({      startY: startY,      status: this.data.state.pressed

    });

  },  touchMove: function (e) {    // 触摸移动

    var movedY = e.touches[0].clientY;    var distance = this.data.startY - movedY;    // console.log(distance);

    // 距离超过50,取消发送

    this.setData({      status: distance > 50 ? this.data.state.cancel : this.data.state.pressed

    });

  },  touchEnd: function (e) {    // 触摸结束

    var endY = e.changedTouches[0].clientY;    var distance = this.data.startY - endY;    // console.log(distance);

    // 距离超过50,取消发送

    this.setData({      cancel: distance > 50 ? true : false,      status: this.data.state.normal

    });    // 不论如何,都结束录音

    this.stop();

  },

Copy after login

2. After sending the message, scroll to the end of the page

1

2

3

4

5

6

data: {  toView: &#39;&#39;}

 

reply: {// ...this.scrollToBottom()

},scrollToBottom: function () {    this.setData({      toView: &#39;row_&#39; + (this.data.message_list.length - 1)

    });

  },

Copy after login

1

<!--每一行消息条--><view class="row" wx:for="{{message_list}}" wx:key="" id="row_{{index}}">

Copy after login

Related articles:

Photo Two-way synchronization chat applet [ByJavaOnLinux] implementation code

Implementation method of a conversation memo applet

Related videos:

Customer service session api2-Easy video tutorial on how to develop and produce WeChat mini programs

The above is the detailed content of WeChat applet development chat conversation component: can be used for online customer service chat conversations. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)