The example in this article describes how to use jQueryMobile to achieve the sliding page turning effect. Share it with everyone for your reference. The specific analysis is as follows:
Swipe gestures are very popular on mobile devices and are very common in swiping to turn pages on mobile devices
Although this function can be implemented in jQueryMobile, I personally agree with the views in the previous article [Analysis of the difficulty of dragging actions in jQuery mobile browsers], because this is in a mobile browser Browsing is not an independent APP of Android, so do not frequently use mobile device gestures other than clicking to avoid conflict with the gestures of the mobile browser and the mobile system itself.
So, how to use jQueryMobile to achieve the effect of sliding page turning?
1. Basic goals
Realize the sliding gesture page turning function in the jQueryMobile frame page in the mobile browser, as shown below:
And records the number of pages on the current page, which will automatically increase and decrease as the user slides.
2. Production process
Regarding how to arrange the interface of JqueryMobile, I will not go into details. For details, please read the previous article [Helloworld and page switching methods of jQueryMobile]
The following code comments mainly describe how to implement the above page by processing the sliding gestures jQuery Mobile Swipeleft and jQuery Mobile Swiperight encapsulated by JqueryMobile, W3C "jQuery Mobile Touch Events" The description of this is problematic, and the experimental code is not consistent with the code given:
<script> <br />
/* In the jquery part, first define a variable that records how many pages have been turned */ <br />
var divnum=1; <br />
/* Equivalent to .innerhtml=""; jquery needs to set the value of a node like this */ <br />
$("#divnumber").text(divnum) <br />
/* Enable touch on #mypage */ <br />
$(document).on("pageinit","#mypage",function(){ <br />
/* If you slide the non-blank part of div1 to the left, then div1 will be hidden, div2 will be displayed, and the page counter will be 1, and the inline text of divnumber will be updated */ <br />
$("#div1").on("swipeleft",function(){ <br />
$("#div1").hide("fast"); <br />
$("#div2").show("fast"); <br />
divnum=divnum 1; <br />
$("#divnumber").text(divnum) <br />
}); <br />
/* If you slide the non-blank part of div2 to the right, then div1 will be displayed, div2 will be hidden, and the page counter will be -1, and the inline text of divnumber will be updated */ <br />
$("#div2").on("swiperight",function(){
$("#div1").show("fast"); <br />
$("#div2").hide("fast"); <br />
divnum=divnum-1; <br />
$("#divnumber").text(divnum) <br />
}); <br />
/* If you slide the non-blank part of div2 to the left, then div2 will be hidden, div3 will be displayed, and the page counter will be 1, and the inline text of divnumber will be updated, and so on */ <br />
$("#div2").on("swipeleft",function(){ <br />
$("#div2").hide("fast"); <br />
$("#div3").show("fast"); <br />
divnum=divnum 1; <br />
$("#divnumber").text(divnum) <br />
}); <br />
$("#div3").on("swiperight",function(){ <br />
$("#div2").show("fast"); <br />
$("#div3").hide("fast"); <br />
divnum=divnum-1; <br />
$("#divnumber").text(divnum) <br />
}); <br />
$("#div3").on("swipeleft",function(){ <br />
$("#div3").hide("fast"); <br />
$("#div4").show("fast"); <br />
divnum=divnum 1; <br />
$("#divnumber").text(divnum) <br />
}); <br />
$("#div4").on("swiperight",function(){
$("#div3").show("fast"); <br />
$("#div4").hide("fast"); <br />
divnum=divnum-1; <br />
$("#divnumber").text(divnum) <br />
}); <br /></script>
Please note that div1 does not have a swipe right gesture because this is the first page, and div4 does not have a swipe left gesture because it is the last page.
I hope this article will be helpful to everyone’s jQueryMobile program design.

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

手机屏幕不好滑动干涩的解决办法:1、给屏幕加湿;2、定期清洁屏幕;3、增加手指的滑动力度;4、使用手机膜;5、更换保护套;6、保持手部湿润;7、贴膜时处理干净;8、使用润滑剂;9、使用手套;10、调整屏幕亮度;11、更换手机。详细介绍:1、给屏幕加湿,在屏幕旁边放置一个加湿器或者喷一些水,让空气中的湿度增加,从而减少屏幕的干燥感;2、定期清洁屏幕,使用专业的屏幕清洁剂等等。

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

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

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

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

JavaScript如何实现图片的上下滑动切换效果并加入淡入淡出动画?在网页开发中,经常需要实现图片的切换效果,可以通过JavaScript来实现上下滑动切换,并且加入淡入淡出的动画效果,下面我们来具体了解一下。首先,我们需要一个包含多张图片的容器,可以使用HTML中的div标签来承载图片。例如,我们创建一个id为"image-container"的div来

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


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

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.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version
Useful JavaScript development tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
