search
HomeWeb Front-endJS TutorialHow to implement Picke in mobile effects
How to implement Picke in mobile effectsOct 12, 2017 am 09:41 AM
accomplishmethod

Written in front

Following the previous research on mobile effects, this time let’s take a look at How to implement Picke in mobile effectsThe implementation principle of the selector

Swiper of mobile effects

See the code here: github

How to implement Picke in mobile effects

##1. Core analysis

1.1 Basic HTML structure


<!--     说明:    
1. 类 How to implement Picke in mobile effects-3d 是为了提供3d视角,如果不需要可以去掉    
2. 类 How to implement Picke in mobile effects-slot-absolute 在3d视角中需要加上,因为下面相对定位的 How to implement Picke in mobile effects-items 是要相对父容器进行    transform的,如果不加,就会造成位移不正确    3. DOM中所有的style样式都是在初始化的时候加上的--><p class="How to implement Picke in mobile effects How to implement Picke in mobile effects-3d">
    <p class="How to implement Picke in mobile effects-items">
        <p class="How to implement Picke in mobile effects-slot How to implement Picke in mobile effects-slot-absolute" style="flex:1;">
            <p class="How to implement Picke in mobile effects-slot-wrapper" id="wrapper" style="height: 108px;">
                <p class="How to implement Picke in mobile effects-item How to implement Picke in mobile effects-selected" style="height:36px;line-height: 36px">1981</p>
                <!-- ... -->
                <p class="How to implement Picke in mobile effects-item" style="height:36px;line-height: 36px">1999</p>
            </p>
        </p>
    </p>
    <p class="How to implement Picke in mobile effects-center-highlight" style="height:36px;margin-top:-18px;"></p></p>

1.2 Initializing DOM

Because the

How to implement Picke in mobile effects in the Ele.me source code is generated using the v-for instruction, Therefore, I simply use javascript to simulate the generation of DOM.

var el = document.querySelector(&#39;#wrapper&#39;);
var animationFrameId = null;
var currentValue;
var itemHeight = 36;
var visibleItemCount = 3;
var valueIndex = 0;
var rotateEffect = true;
var datas = [&#39;1981&#39;, &#39;1982&#39;, &#39;1983&#39;, &#39;...&#39;, &#39;1999&#39;];// 如果支持3d视角,则给<p class="How to implement Picke in mobile effects"></p>加上类"How to implement Picke in mobile effects-3d"// <p class="How to implement Picke in mobile effects-slot" style="flex:1;">加上类"How to implement Picke in mobile effects-slot-absolute"if (rotateEffect) {
    var How to implement Picke in mobile effects = document.querySelector(&#39;.How to implement Picke in mobile effects&#39;);
    var How to implement Picke in mobile effectsSlot = document.querySelector(&#39;.How to implement Picke in mobile effects-slot&#39;);
    How to implement Picke in mobile effects.classList.add(&#39;How to implement Picke in mobile effects-3d&#39;);
    How to implement Picke in mobile effectsSlot.classList.add(&#39;How to implement Picke in mobile effects-slot-absolute&#39;);}// 限定容器高度el.style.height = `${visibleItemCount * itemHeight}px`;// 生成DOMvar html = &#39;&#39;;datas.forEach(function(data, index) {
    html += `<p class="How to implement Picke in mobile effects-item" style="height:36px;line-height:36px;">${data}</p>`;});el.innerHTML = html;// 激活当前itemvar How to implement Picke in mobile effectsItems = document.querySelectorAll(&#39;.How to implement Picke in mobile effects-item&#39;);How to implement Picke in mobile effectsItems[valueIndex].classList.add(&#39;How to implement Picke in mobile effects-selected&#39;);

1.3 Initialization event

Generally speaking, the events of

How to implement Picke in mobile effects

also include sliding start, sliding, and sliding end. Because it is a mobile device after all, sliding is inevitable. This time, the sliding event is encapsulated in the source code, compatible with the

PC terminal, and eliminates the impact of dragging and selection. Let’s take a closer look at the analysis. `

/**  * draggable.js  * 只是起到一定的兼容性 * 实质和直接调用 el.addEventListener(&#39;touchstart&#39;, startFn); 并没有多大差别 */// 滑动开始// touchstart 和 mousedown 可见对PC端的兼容// onselectstart/ondragstart 直接return 可见排除了拖动和选择element.addEventListener(supportTouch ? &#39;touchstart&#39; : &#39;mousedown&#39;, function(event) {
    if (isDragging) return;
    document.onselectstart = function() { return false; };
    document.ondragstart = function() { return false; };

    // ...});// 滑动结束var endFn = function(event) {
    // 注销事件
    if (!supportTouch) {
        document.removeEventListener(&#39;mousemove&#39;, moveFn);
        document.removeEventListener(&#39;mouseup&#39;, endFn);
    }
    document.onselectstart = null;
    document.ondragstart = null;

    isDragging = false;

    if (options.end) {
        options.end(supportTouch ? event.changedTouches[0] || event.touches[0] : event);
    }}

If
DOM

follows your sliding on the mobile phone screen, the method is similar, it is nothing more than recording the starting position at the beginning of sliding. Calculate the displacement in real time, and after the sliding is completed,

DOM will slide to the position where it should slide. For this point, please refer to the previous article Swiper for mobile effects. This article has the same method. Here we focus on the difference

// 滑动开始的执行事件方法start: function(event) {
    dragState = {
        range: getDragRange(),
        // ...
        startTranslateTop: translateUtil.getElementTranslate(el).top
    };}

There are two methods, the first
getDragRange

and the second

getElementTranslate(el ).

The function of the first function is to obtain the minimum and maximum displacement that
    How to implement Picke in mobile effects
  • can slide, which will be used in the sliding end event arrive. Regarding how to calculate, here is a brief mention. When you slide down, the maximum cannot exceed the top of the middle

    item. This is why itemHeight * Math.floor(visibleItemCount / 2) , and when sliding upward, the maximum cannot exceed the bottom of the middle item, -itemHeight * (valuesLength - Math.ceil(visibleItemCount / 2)), just think about it carefully.

    The second function is to obtain the
  • transform
  • value of the current

    How to implement Picke in mobile effects as the basis for the next sliding calculation. In fact, it feels like this is quite troublesome, because the translate value will definitely be calculated in touchend. We only need to save the last sliding movement value each time, instead of doing it every time. Get it from DOM.

/** * translateUtil * 对浏览器对前缀支持的一些判断 * 检测浏览器对3d属性的支持情况 * 获取当前的translate值/清空How to implement Picke in mobile effects的translate值/移动How to implement Picke in mobile effects * 对于浏览器的检测方面,这也算是一个比较好的工具类 */var docStyle = document.documentElement.style;var engine;var translate3d = false;// 浏览器判断if (window.opera && Object.prototype.toString.call(opera) === &#39;[object Opera]&#39;) {
    engine = &#39;presto&#39;;} else if (&#39;MozAppearance&#39; in docStyle) {
    engine = &#39;gecko&#39;;} else if (&#39;WebkitAppearance&#39; in docStyle) {
    engine = &#39;webkit&#39;;} else if (typeof navigator.cpuClass === &#39;string&#39;) {
    engine = &#39;trident&#39;;}// css前缀var cssPrefix = {
    trident: &#39;-ms-&#39;,        // IE
    gecko: &#39;-moz-&#39;,         // FireFox
    webkit: &#39;-webkit-&#39;,     // Chrome/Safari/etc...
    presto: &#39;-o-&#39;           // Opera}[engine];// style前缀var vendorPrefix = {
    trident: &#39;ms&#39;,
    gecko: &#39;Moz&#39;,
    webkit: &#39;Webkit&#39;,
    presto: &#39;O&#39;}[engine];var helpElem = document.createElement(&#39;p&#39;);var perspectiveProperty = vendorPrefix + &#39;Perspective&#39;;var transformProperty = vendorPrefix + &#39;Transform&#39;;var transformStyleName = cssPrefix + &#39;transform&#39;;var transitionProperty = vendorPrefix + &#39;Transition&#39;;var transitionStyleName = cssPrefix + &#39;transition&#39;;var transitionEndProperty = vendorPrefix.toLowerCase() + &#39;TransitionEnd&#39;;if (helpElem.style[perspectiveProperty] !== undefined) {
    translate3d = true;}// 讲一下这个正则// \s*(-?\d+(\.\d+?)?)px 这是一个单元,匹配这样的 -23.15px, 剩下的应该就好理解了var regexp = /translate\(\s*(-?\d+(\.\d+?)?)px,\s*(-?\d+(\.\d+?)?)px\)\s*translateZ\(0px\)/ig;

Next look at the sliding

drag: function(event) {
    // 加上 dragging 类是为了清除过渡效果,在swiper中也有同样的应用
    el.classList.add(&#39;dragging&#39;);

    dragState.left = event.pageX;
    dragState.top = event.pageY;

    var deltaY = dragState.top - dragState.startTop;
  
    // 计算当前的滑动位移
    var translate = dragState.startTranslateTop + deltaY;

    // 滑动元素
    translateUtil.translateElement(el, null, translate);
    velocityTranslate = translate - prevTranslate || translate;

    prevTranslate = translate;

    if (rotateEffect) {
        updateRotate(prevTranslate, How to implement Picke in mobile effectsItems);
    }}

See the above code There is a
velocityTranslate

. This value has a magical effect. I didn’t know it at first. Later, I found out that it was used after the sliding was completed, and then I realized that it represents a displacement value of a velocity. What is velocity? Just like when you slide quickly, you always hope that it can slide with inertia. This value multiplied by an inertia value can get an inertial displacement. Look at the code in

end.

end: function() {
    // 添加过渡
    el.classList.remove(&#39;dragging&#39;);
    // 惯性值
    var momentumRatio = 7;
    var currentTranslate = translateUtil.getElementTranslate(el).top;
    var duration = new Date() - dragState.start;

    var momentumTranslate;
    if (duration < 300) {
        momentumTranslate = currentTranslate + velocityTranslate * momentumRatio;
    }

    // 加上惯性速率之后的位移值
    console.log(&#39;momentumTranslate&#39;, momentumTranslate);

    dragRange = dragState.range;

    setTimeout(function() {
        var translate;
        if (momentumTranslate) {
            translate = Math.round(momentumTranslate / itemHeight) * itemHeight;
        } else {
            translate = Math.round(currentTranslate / itemHeight) * itemHeight;
        }

        // 取得最终的位移值,
        // 必须为itemHeight的倍数
        // 在范围的最大值和最小值中取
        translate = Math.max(Math.min(translate, dragRange[1]), dragRange[0]);
        translateUtil.translateElement(el, null, translate);

        // 计算得出当前位移下应该对应的实际值
        currentValue = translate2Value(translate);

        // 3d效果
        if (rotateEffect) {
            planUpdateRotate();
        }
    }, 10);

    dragState = {};}

This is the implementation process of the entire
How to implement Picke in mobile effects

. It can be used without the

3d effect. Let’s take a look at how to achieve the 3D effect. There is an initial initialization in doOnValuesChange.

[].forEach.call(items, function(item, index) {
    translateUtil.translateElement(item, null, itemHeight * index);});

sets a displacement value based on the index for each
item

. At this time, the positioning of each

item is They must be absolute, so that they are next to each other after the displacement. Otherwise, there may be a space of itemHeight in the middle. 3D

The most critical point in the effect is how to calculate the flip angle. A constant object is defined in the source code:

var VISIBEL_ITEMS_ANGLE_MAP = {
    3: -45,
    5: -20,
    7: -15};

You can see that when there are only 3 visible elements, the highlighted part is relative to the
X

axis Parallel, the previous

item must be rotated 45 degrees clockwise around the X axis, and the next item must be rotated 45 degrees counterclockwise around the X axis Spend. In addition, there is a section of code that is particularly convoluted. According to my understanding, it is as follows:

// 当前item相对于顶部原本应该有的位移值var itemOffsetTop = index * itemHeight; // 滑动过程中,相对于最开始的位置滑动的位移值var translateOffset = dragRange[1] - currentTranslate;// 当应该有的位移值和滑动的位移值相等的时候,也就说明了当前的`item`被选中// 也就是说此时当前的角度为0var itemOffset = itemOffsetTop - translateOffset;var percentage = itemOffset / itemHeight;var angle = angleUnit * percentage;if (angle > 180) angle = 180;if (angle < -180) angle = -180;rotateElement(item, angle);

If you think it is too convoluted, there is actually no need to follow his approach. We only need to find a way to determine whether each
item

is in the previous or next position relative to the currently selected

item, and we can calculate the angle based on this. 2. Summary

I have read so much about the

How to implement Picke in mobile effects

component in Ele.me. Overall, it is very similar to the sliding one in

swiper Similar, the key point is to calculate the final displacement value to slide to the correct position according to the displacement value. As for how to calculate the value, in fact, everyone's implementation may be similar, and there is no need to follow the source code. You can Add your own understanding appropriately, so that you may be more comfortable writing code. This is just my personal understanding, and I hope it can provide some help to myself and everyone else.

The above is the detailed content of How to implement Picke in mobile effects. For more information, please follow other related articles on the PHP Chinese website!

Statement
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
演示win7调整屏幕亮度的方法演示win7调整屏幕亮度的方法Jul 08, 2023 pm 07:49 PM

不同的电脑系统在调整屏幕亮度的操作方法上会有些不同,最近就有使用win7系统的网友不知道win7怎么调整屏幕亮度,看久了电脑眼睛比较酸痛。下面小编就教下大家win7调整屏幕亮度的方法。具体的操作步骤如下:1、点击win7电脑左下角的“开始”,在弹出的开始菜单中选择“控制面板”打开。2、在打开的控制面板中找到“电源选项”打开。3、也可以用鼠标右键电脑右下角的电源图标,在弹出的菜单中,点击“调整屏幕亮度”,如下图所示。两种方法都可以用。4、在打开的电源选项窗口的最下面可以看到屏幕亮度调整的滚动条,直

win10监控摄像头打开照片的方法win10监控摄像头打开照片的方法Jul 10, 2023 pm 09:41 PM

如果我们手头没有手机,只有电脑,但我们必须拍照,我们可以使用电脑内置的监控摄像头拍照,那么如何打开win10监控摄像头,事实上,我们只需要下载一个相机应用程序。打开win10监控摄像头的具体方法。win10监控摄像头打开照片的方法:1.首先,盘快捷键Win+i打开设置。2.打开后,进入个人隐私设置。3.然后在相机手机权限下打开访问限制。4.打开后,您只需打开相机应用软件。(如果没有,可以去微软店下载一个)5.打开后,如果计算机内置监控摄像头或组装了外部监控摄像头,则可以拍照。(因为人们没有安装摄

基于Java的机器视觉实践和方法介绍基于Java的机器视觉实践和方法介绍Jun 18, 2023 am 11:21 AM

随着科技的不断发展,机器视觉技术在各个领域得到了广泛应用,如工业自动化、医疗诊断、安防监控等。Java作为一种流行的编程语言,其在机器视觉领域也有着重要的应用。本文将介绍基于Java的机器视觉实践和相关方法。一、Java在机器视觉中的应用Java作为一种跨平台的编程语言,具有跨操作系统、易于维护、高度可扩展等优点,对于机器视觉的应用具有一定的优越性。Java

win7怎么调屏幕亮度的两种简单方法win7怎么调屏幕亮度的两种简单方法Jul 08, 2023 pm 06:33 PM

目前有很多屏幕亮度调整软件,我们可以通过使用软件进行快速调整或者通过显示器上自带的亮度功能进行调整。以下是详细的Win7屏幕亮度调整方式,您可以通过教程中的方法进行快速调整即可。Win7系统电脑怎么调节屏幕亮度教程:1、依次点击“计算机—右键—控制面板”,如果没有也可以在搜索框中进行搜索。2、点击控制面板下的“硬件和声音”,或者点击“外观和个性化”都可以。3、点击“NVIDIA控制面板”,有些显卡可能是AMD或者Intel的,请根据实际情况选择。4、调节图示中亮度滑块即可。5、还有一种方法,就是

Go 语言中的方法是怎样定义和使用的?Go 语言中的方法是怎样定义和使用的?Jun 10, 2023 am 08:16 AM

Go语言是近年来备受青睐的编程语言,因其简洁、高效、并发等特点而备受开发者喜爱。其中,方法(Method)也是Go语言中非常重要的概念。接下来,本文就将详细介绍Go语言中方法的定义和使用。一、方法的定义Go语言中的方法是带有接收器(Receiver)的函数,它是一个与某个类型绑定的函数。接收器可以是值类型或者指针类型。用于接收者的参数可以在方法名

PHP文件下载方法及常见问题解答PHP文件下载方法及常见问题解答Jun 09, 2023 pm 12:37 PM

PHP是一个广泛使用的服务器端编程语言,它的许多功能和特性可以将其用于各种任务,包括文件下载。在本文中,我们将了解如何使用PHP创建文件下载脚本,并解决文件下载过程中可能出现的常见问题。一、文件下载方法要在PHP中下载文件,我们需要创建一个PHP脚本。让我们看一下如何实现这一点。创建下载文件的链接通过HTML或PHP在页面上创建一个链接,让用户能够下载文件。

图文详解如何下载win10系统方法图文详解如何下载win10系统方法Jul 16, 2023 pm 01:25 PM

如今微软的Windows系统已经更新换代到了Windows10版本。很多以前还在使用Windows7系统的用户都想体验这个新版本Windows10系统。下面小编就来说说如何下载win10系统下载的方法,大家快来看看。1、首先下载一个小白重装系统软件,然后点击在线重装,下载win10系统。2、然后就开始系统镜像的下载了。3、系统镜像下载完成就是环境部署了。然后win10系统就下载完成啦。4、重启之后开始安装系统,安装完成就能进入桌面咯。以上就是如何下载win10系统的方法介绍啦,希望能帮助到大家。

Vue 中的 createApp 方法是什么?Vue 中的 createApp 方法是什么?Jun 11, 2023 am 11:25 AM

随着前端开发的快速发展,越来越多的框架被用来构建复杂的Web应用程序。Vue.js是流行的前端框架之一,它提供了许多功能和工具来简化开发人员构建高质量的Web应用程序。createApp()方法是Vue.js中的一个核心方法之一,它提供了一种简单的方式来创建Vue实例和应用程序。本文将深入探讨Vue中createApp方法的作用,其如何使用以及使用时需要了解

See all articles

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

Hot Tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft