Home WeChat Applet Mini Program Development How to realize that clicking on a letter in the WeChat friend list jumps to the corresponding position

How to realize that clicking on a letter in the WeChat friend list jumps to the corresponding position

May 17, 2018 pm 03:33 PM
list friends Click

Is there a function on WeChat, which is to jump to the corresponding position by clicking on the letter in the list? This article mainly introduces the relevant information on the WeChat applet development of the friend list letter list to jump to the corresponding position. I hope this article can help everyone. Everyone has implemented such a function. Friends who need it can refer to it. I hope it can help everyone.

WeChat applet development friend list letter list jump corresponding position

Foreword:

In the small The program implements the effect of clicking on the letter list on the right side of the WeChat friend list to jump to the corresponding position. I wrote a demo. The core part is very simple, so there are not many comments. If you encounter any problems, please join the group and ask me.

Core technical points:

1. The scroll-into-view and scroll-with-animation. scroll-y attributes of the scroll-view component of the mini program.
2. Application of touch event of mini program.
3. Application of Js timer.

view page code:

index.wxml

 class="container" scroll-y>
  class="info" id="info" scroll-with-animation scroll-y scroll-top="200" scroll-into-view="{{toView}}" style="height:{{height}}px;">
   class="iitem" id="{{item.id}}" wx:for="{{info_list}}" wx:key="1">
   {{item.id}} . {{item.desc}}
  
 
  class="letter {{active == true ? 'active': ''}}" bindtouchstart='start' bindtouchmove='move' bindtouchend='end'>
   class="litem" bindtap='down' data-index="999">☆
   class="litem" wx:for="{{letter_list}}" bindtap='down' wx:for-index="index" wx:key="2" data-index="{{index}}" style="height: {{letter_height}}px;">{{item}}
 
 class="tips" hidden="{{hide}}">{{curView}}
Copy after login

js code:

index.js

//index.js
//获取应用实例
const app = getApp()
Page({
 data: {
  letter_list: [],
  info_list: [],
  hide: true,
  active: false,
  toView: 'A',
  curView: 'A',
  letter_height: 18
 },
 onLoad: function () {
  this.active = false;
  this.timer = null;
  var letter_list = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'];
  var info_list = [];
  for (var i = 0; i < 26; i++) {
   var obj = {};
   obj.id = letter_list;
   obj.desc = &#39;这是一个用于测试的DEMO。1.目标是用于实现微信好友列表的点击首字母跳转到对应好友位置。2.目标是用于实现微信好友列表的点击首字母跳转到对应好友位置&#39;;
   info_list.push(obj);
  }
  this.setData({
   height: app.globalData.height,
   info_list: info_list,
   letter_list: letter_list,
   sHeight: 100 * 26 + 25
  });
 },
 start: function (e) {
  this.setData({
   active: true,
   hide: false
  })
 },
 end: function (e) {
  if (this.timer) {
   clearTimeout(this.timer);
   this.timer = null;
  }
  var moveY = e.changedTouches["0"].clientY - 18, that = this;
  var curIndex = parseInt(moveY / 18);
  var view = this.data.letter_list[curIndex];
  this.setData({
   toView: view,
   active: false
  });
  if (!this.timer) {
   this.timer = setTimeout(function () {
    that.setData({
     hide: true
    })
    that.timer = null;
   }, 1000);
  }
 },
 move: function (e) {
  var moveY = e.changedTouches["0"].clientY - 18;
  var curIndex = parseInt(moveY / 18);
  var view = this.data.letter_list[curIndex];
  this.setData({
   curView: view
  })
 },
 down: function (e) {
  if (this.timer) {
   clearTimeout(this.timer);
   this.timer = null;
  }
  var index = e.currentTarget.dataset.index,
   that = this;
  if (index != 999) {
   var view = this.data.letter_list[index];
   this.setData({
    toView: view,
    curView: view
   })
  } else {
   this.setData({
    toView: &#39;A&#39;,
    curView: &#39;☆&#39;
   })
  }
  if (!this.timer) {
   this.timer = setTimeout(function () {
    that.setData({
     hide: true
    });
    that.timer = null;
   }, 1000);
  }
 }
})
Copy after login

Style part

index.wxss

/**index.wxss**/
text {
 font-weight: bold
}
.letter {
 font-size: 12px;
 width: 24px;
 height: 100%;
 position: fixed;
 right: 0;
 top: 0;
 z-index: +999;
}
.litem {
 width: 24px;
 height: 18px;
 line-height: 18px;
 text-align: center;
}
.info {
 font-size: 12px;
 text-align: justify;
 overflow: hidden;
}
.active {
 background: rgba(0, 0, 0, 0.2);
}
.iitem {
 padding: 10rpx 10rpx;
 margin-bottom: 10rpx;
 border-radius: 8rpx;
 background: rgba(222,222,222,0.2);
 box-sizing: border-box;
}
.tips {
 width: 40px;
 height: 40px;
 background: rgba(0,0,0,0.4);
 font-size: 20px;
 text-align: center;
 line-height: 40px;
 color: #fff;
 position: fixed;
 left: 50%;
 top: 50%;
 margin: -20px;
 z-index: +999;
 border-radius: 10rpx;
Copy after login

Related recommendations:

How to implement the WeChat applet scroll view container

How to set the URL and token of the WeChat applet

How to obtain user information interface for the Thinkphp5 WeChat applet

The above is the detailed content of How to realize that clicking on a letter in the WeChat friend list jumps to the corresponding position. 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

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

How to retrieve deleted WeChat friends How to retrieve deleted WeChat friends How to retrieve deleted WeChat friends How to retrieve deleted WeChat friends Feb 22, 2024 pm 05:52 PM

In the add friend option of WeChat, enter the other party's WeChat ID and click Add. Tutorial Applicable Model: iPhone13 System: iOS15.3.1 Version: WeChat 8.0.19 Analysis 1 First, click the plus icon in the upper right corner of the WeChat homepage. 2 Then click Add Friends in the pop-up options. 3. Then enter the add friend page and enter the other party’s WeChat ID. 4After searching for the friend, click Add to Address Book to add the friend. Supplement: How to delete WeChat friends 1. First open and log in to WeChat, click on the address book at the bottom of the WeChat main page. 2Click to enter the homepage of the friend you want to delete, and click the three dots icon in the upper right corner of the page. 3 Enter the profile settings and click the delete option at the bottom of the page to delete friends. Summary/Precautions What are the friends deleted by WeChat?

How to set multiple timers on iPhone iOS 17 How to set multiple timers on iPhone iOS 17 Sep 18, 2023 am 09:01 AM

In iOS 17, you can set multiple timers on your iPhone using the Clock app, or use Siri to set it hands-free. We discuss both in this article. Let's take a look at them. Set Multiple Timers on iPhone Using the Clock App Open the Clock app on your iPhone and tap the Timers tab in the lower right corner. Now, set the hours, minutes, and seconds. You can use the "Label" and "When does the timer end" options to set a name for the timer and a preferred tone when the timer completes. This will help you differentiate between timers. Once done, click the "Start" button. Then, click the "+" icon in the upper right corner. Now, repeat the above steps to set multiple timers on iPhone. You can also browse

How do I know if the other party has deleted me on WeChat - How to determine whether I have been deleted by a friend How do I know if the other party has deleted me on WeChat - How to determine whether I have been deleted by a friend Mar 18, 2024 pm 07:58 PM

WeChat is one of the most popular social applications currently, and friend management is an inevitable part of daily use. Sometimes, we may be curious whether certain friends have deleted us, but we don’t want to ask directly or cause embarrassment. Below, the editor has compiled 4 methods to check whether WeChat friends have deleted you. Let’s take a look! Method 1. Send a message directly The simplest and most direct method is to try to send a message to the other party. If the other party has deleted you, WeChat will prompt &quot;The other party has turned on friend verification, and you are not his (her) friend yet. Please send a friend verification request first, and you can only chat after the other party has passed the verification.&quot; Method 2: Initiate a video or voice call Trying to initiate a video or voice call to the other party is also an effective method. If the other party has deleted you, the call will

How to count the number of elements in a list using Python's count() function How to count the number of elements in a list using Python's count() function Nov 18, 2023 pm 02:53 PM

How to use Python's count() function to calculate the number of an element in a list requires specific code examples. As a powerful and easy-to-learn programming language, Python provides many built-in functions to handle different data structures. One of them is the count() function, which can be used to count the number of elements in a list. In this article, we will explain how to use the count() function in detail and provide specific code examples. The count() function is a built-in function of Python, used to calculate a certain

How to remove square brackets from a list using Python How to remove square brackets from a list using Python Sep 05, 2023 pm 07:05 PM

Python is a very useful software that can be used for many different purposes depending on the need. Python can be used in web development, data science, machine learning, and many other fields that require automation. It has many different features that help us perform these tasks. Python lists are one of the very useful features of Python. As the name suggests, a list contains all the data you wish to store. It is basically a set of different types of information. Different Ways to Remove Square Brackets Many times, users come across a situation where list items are displayed within square brackets. In this article, we'll detail how to remove these brackets to get a better view of your listing. One of the easiest ways to remove parentheses in strings and replacement functions is in

How to retrieve deleted WeChat friends How to add deleted WeChat friends back How to retrieve deleted WeChat friends How to add deleted WeChat friends back Feb 22, 2024 pm 03:30 PM

You can search for the other party's WeChat ID on the add friend interface to retrieve it. Tutorial Applicable Model: iPhone13 System: iOS15.5 Version: WeChat 8.0.19 Analysis 1 Click the plus button in the upper right corner of the WeChat main interface. 2 Then click the Add Friend option in the pop-up window. 3 Next, enter the friend’s WeChat ID in the pop-up Add Friend page. 4. After finally searching for the friend, click Add to Address Book. Supplement: How to delete WeChat friends 1. First open WeChat and click on the address book at the bottom of the home page. 2 Then click on the friend you want to delete in the address book. 3Then click the three-dot button in the upper right corner of the details page. 4 Next, click the Delete option on the pop-up page. 5Finally, click Delete Contact. Summary/Notes

How to create a grocery list: Use the Reminders app for iPhone How to create a grocery list: Use the Reminders app for iPhone Dec 01, 2023 pm 03:37 PM

In iOS 17, Apple added a handy little list feature to the Reminders app to help you when you're out shopping for groceries. Read on to learn how to use it and shorten your trip to the store. When you create a list using the new "Grocery" list type (named "Shopping" outside the US), you can enter a variety of food and groceries and have them automatically organized by category. This organization makes it easier to find what you need at the grocery store or while out shopping. Category types available in alerts include Produce, Bread & Cereals, Frozen Foods, Snacks & Candy, Meat, Dairy, Eggs & Cheese, Baked Goods, Baked Goods, Household Products, Personal Care & Wellness, and Wine, Beer & Spirits . The following is created in iOS17

How to set up my business card in Contacts on iPhone [2023] How to set up my business card in Contacts on iPhone [2023] Sep 22, 2023 pm 09:17 PM

With My Business Cards in iOS, you can create a personalized contact card that Siri and other services recognize and associate with you and your phone number. With the introduction of contact posters in iOS17, My Cards becomes very important as it is now used to create your contact posters. If you're eager to get your contact poster up and running, you have to start by setting up My Business Card. We'll walk through how to create a My Business Card and how to make it work smoothly with Siri and your contact poster. How to Set Up My Business Cards in Contacts on iPhone [2023] If you are setting up My Business Cards on your iPhone for the first time, you must do it through the Contacts app only

See all articles