Home > Web Front-end > JS Tutorial > body text

Implementation of mobile effect CellSwiper

一个新手
Release: 2017-10-14 10:36:11
Original
1447 people have browsed it

Written in front

Following the previous explanation of the mobile effect, I happened to need to use this effect in the project. I went to the component library of Ele.me to take a look at the effect and found that the effect was the same as that on WeChat Implementation of mobile effect CellSwiper is still a little different, because React is used in the project, and all the components of React used before are coded letter by letter (it’s sad to think about it) ), so combined with the previous swiper, the principle is similar and a pulling effect similar to that on WeChat is achieved.

Implementation of mobile effect CellSwiper


1. Core analysis

1.1 HTML structure

<p class="c-cell-swiper" id="wrapper">
    <p class="cell-content" id="content">
        <p class="your-code">
            <img  class="icon" src="./images/t.jpg" alt="Implementation of mobile effect CellSwiper" ></img>
            <p class="left">
                <span>萌萌的卡洛奇</span>
                <p class="sub">我这个月要来看你啦</p>
            </p>
            <p class="right">now</p>
      </p>
    </p>
    <p class="cell-btn-group" id="btnGroup">
        <p class="cell-btn">标为未读</p>
        <p class="cell-btn">删除</p>
    </p></p>
Copy after login

The class name in the codeyour-code is the code you want to add.

Before making an effect, we first need to analyze how we should do it, so that we can be targeted. For example, this effect uses a covering pull-out, so it requires two layers. The upper layer is responsible for sliding, and the lower layer is fixed. When the upper layer slides, the lower layer will naturally be displayed.

So there are two points:

  • The upper and lower layers must be absolutely positioned, so that the layers can be distinguished (at first I tried that the upper layer was not I need to decide the positioning, and I found that when I moved it to the project, the lower layer was not displayed because z-index:-1 was set at the beginning, but for general pages, body##. #In fact, there is a level, so it will cover the lower layer, causing it to not be displayed)

  • Since absolute positioning is used, the height of the upper level needs to be calculated

1.2 Code Analysis

After positioning the level, the button layer below can be basically ignored. The main operation is still sliding. Swiping can refer to the previous swiper code, so I won’t go into details here.

1.2.1 Calculate the height and width of the button group

var el = document.querySelector(&#39;#content&#39;);var btn = document.querySelector(&#39;#btnGroup&#39;);var wrapper = document.querySelector(&#39;#wrapper&#39;);function getBtnGroupWidth() {
    // 按钮组的宽度,滑动的最大距离
    btnGroupWidth = btn.getBoundingClientRect().width;
    wrapperHeight = el.getBoundingClientRect().height;
    // 设置最上层容器的高度
    wrapper.style.height = wrapperHeight + &#39;px&#39;;
    // 设置子容器高度
    el.children[0].style.height = wrapperHeight + &#39;px&#39;;
    // 设置按钮组的line-height,保证按钮组文字居中
    btn.style.lineHeight = wrapperHeight + &#39;px&#39;;}
Copy after login

1.2.2 Slide

// 滑动中 ontouchmove// ...// 这里计算的是上层滑动的距离范围// 滑动最远不能超过按钮组宽度// 滑动最小距离就是不滑动,也就是0offsetLeft = Math.min(Math.max(-btnGroupWidth, offsetLeft), 0);translate(el, offsetLeft);// ...// 滑动结束 ontouchend// ...// 如果是tap, 直接关闭if (dragDuration < 300) {
    var fireTap = Math.abs(offsetLeft) < 5 && Math.abs(offsetTop < 5);
    if (isNaN(offsetLeft) || isNaN(offsetTop)) {
        fireTap = true;
    }
    if (fireTap) {
        translate(el, 0, 150);
        opened = false;
        swiping = false;
        return;
    }}var distanceX = Math.abs(offsetLeft);// 如果向左滑动超过了按钮组的40%,辣么在松手的一刻自动滑开// 反之如果向右滑动超过了按钮组的40%就关闭if (distanceX > btnGroupWidth * 0.4 && offsetLeft < 0) {
    translate(el, -btnGroupWidth, 150);
    opened = true;} else {
    translate(el, 0, 150);
    opened = false;}// ...
Copy after login
2. Summary

The entire process is equivalent to

swiper is quite simple. It can be said that it is actually a simplified version of swiper.

The key point is how to analyze an effect after getting it. Only with a clear analysis idea can a reasonable solution be given for this analysis. Here I just record the process of making this effect and share it. I hope it will be helpful to everyone.

The above is the detailed content of Implementation of mobile effect CellSwiper. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!