


Usage posture
When designing a full-screen scrolling plug-in, I hope that developers will almost:
Quickly generate exquisite H5 without writing any scripts
Support PC scroll wheel and mobile touch
Cool transition effects
Flexible timeline management
Everything is configurable
But no scripting Surely there is no flexibility? ! no. Not only can you configure some parameters in HTML, you can also inject some logic through the callback function of the plug-in. Let’s take the partial HTML of the example you saw above by scanning the code to analyze the usage posture of AlloyTouch.FullPage:
<div id="fullpage"> <div> <div> <div class="animated" data-show="bounceInLeft" data-hide="bounceOutLeft">AlloyTouch Introduction</div> <div class="animated" data-delay="500" data-show="bounceInUp" data-hide="zoomOut"><img src="/static/imghwm/default1.png" data-src="asset/alloytouch.png" class="lazy" alt="AlloyTouch full-screen scrolling plug-in creates a smooth H5 page in 30 seconds" ></div> <div class="animated" data-delay="1200" data-show="bounceIn" data-hide="bounceOut">By AlloyTeam</div> </div> </div> <div> <div> <div class="animated" data-delay="100" data-show="flipInY" data-hide="flipOutY" >Powerful Features</div> <div class="animated" data-delay="400" data-show="zoomIn" data-hide="zoomOut"><img src="/static/imghwm/default1.png" data-src="asset/power.png" class="lazy" alt="AlloyTouch full-screen scrolling plug-in creates a smooth H5 page in 30 seconds" ></div> </div> </div> ... ... ... </div>
Note that the above is only part of the HTML, and I have combined some with the plug-in Configuration-independent HTML has been removed. Let’s analyze them one by one:
class="animated" conforms to the convention of animate.css. Adding this class means there will be animation.
data-delay represents how long the marked DOM element will wait before starting to play animation after scrolling to the page. The default value is 0 if the developer does not mark it.
data-show represents the animation type displayed by the marked DOM element
data-hide represents the hidden animation type of the marked DOM element (this is usually invisible to the user, but for show Time smoothing, generally set to the opposite type of data-show)
So much, so many configurations, so many configurations! ! Simple enough! !
Of course you need to initialize it in js:
new AlloyTouch.FullPage("#fullpage",{ animationEnd:function () { }, leavePage: function (index) { console.log("leave"+index) }, beginToPage: function (index) { console.log("to"+index); pb.to(index / (this.length-1)); } });
animationEnd is the callback function after the scroll ends
leavePage represents leaving a certain page Callback function
beginToPage represents the callback function that intends to go to a certain page.
The pb above is used to set the progress of nav or progress. This can be ignored for now. If necessary, users can encapsulate any progress bar component themselves.
Principle Analysis
Here we mainly extract the core code of AlloyTouch.FullPage for analysis:
new AlloyTouch({ touch: this.parent, target: this.parent, property: "translateY", min: (1 - this.length) * this.stepHeight, max: 0, step: this.stepHeight, inertia: false, bindSelf : true, touchEnd: function (evt, v, index) { var step_v = index * this.step * -1; var dx = v - step_v; if (v < this.min) { this.to(this.min); } else if (v > this.max) { this.to(this.max); } else if (Math.abs(dx) < 30) { this.to(step_v); }else if (dx > 0) { self.prev(); } else { self.next(); } return false; }, animationEnd: function () { option.animationEnd.apply(this,arguments); self.moving = false; } });
Here The touch and movement Dom are all fullpage DOM, that is, this.parent
above is scrolling up and down, so the movement attribute is translateY
min, which can be passed through window.innerHeight and the total Calculating the number of pages, this.stepHeight is window.innerHeight
max is obviously 0
step is obviously window.innerHeight, which is this.stepHeight
inertia: false means Disable inertial motion, that is, the user lets go and will not scroll inertly
bindSelf means that touchmove, touchend and touchcancel are all bound to this.parent itself, not to the window. If bindSelf is not set, touchmove, touchend and touchcancel are all bound to window.
We need to explain in detail here. This bindSelf configuration is very useful. For example, a typical application scenario is to solve the problem of AlloyTouch nesting AlloyTouch. For example, in the example you saw by scanning the code above, the Demo with AlloyTouch nested is as follows:
This is actually nested scrolling. Will rolling the inside cause the outside to also roll? How to deal with it? The scrolling inside must add bindSelf and prevent bubbling:
Let’s look at the detailed code of the internal scrolling:
var scroller = document.querySelector("#scroller"); Transform(scroller,true); new AlloyTouch({ touch:"#demo0", target: scroller, property: "translateY", min:250-2000, max: 0 , touchStart:function(evt){ evt.stopPropagation(); }, touchMove:function(evt){ evt.stopPropagation(); }, bindSelf:true })
In this case, the nesting inside the nested HTML AlloyTouch will not bubble up, that is, scrolling inside will not trigger outside scrolling.
Continue to analyze the FullPage source code:
touchEnd is the callback function after the user's finger leaves the screen. There is boundary processing logic in it:
If min and max are exceeded, min and max will be corrected accordingly.
step correction, if the absolute value is less than 30px, it will be reset
step correction, if the absolute value is greater than 30px and greater than 0, it will go to the previous page
step correction, if the absolute value is greater than 30px and If it is less than 0, it will go to the next page.
Return false means that the movement correction logic after AlloyTouch releases your hand will not be run. This is very important.
animationEnd is the callback after the movement ends. The function will execute the animationEnd passed by the user from AlloyTouch.FullPage, and set moving to false.
Start the journey of AlloyTouch.FullPage
Github: https://github.com/AlloyTeam/AlloyTouch
The above is the entire content of this article, I hope it will be helpful to everyone The learning is helpful, and I hope everyone will support the PHP Chinese website.
For more AlloyTouch full-screen scrolling plug-in, you can create a smooth H5 page in 30 seconds. For related articles, please pay attention to the PHP Chinese website!

This article explains how to embed audio in HTML5 using the <audio> element, including best practices for format selection (MP3, Ogg Vorbis), file optimization, and JavaScript control for playback. It emphasizes using multiple audio f

This article explains how to create and validate HTML5 forms. It details the <form> element, input types (text, email, number, etc.), and attributes (required, pattern, min, max). The advantages of HTML5 forms over older methods, incl

The article discusses using the HTML5 Page Visibility API to detect page visibility, improve user experience, and optimize resource usage. Key aspects include pausing media, reducing CPU load, and managing analytics based on visibility changes.

The article discusses using viewport meta tags to control page scaling on mobile devices, focusing on settings like width and initial-scale for optimal responsiveness and performance.Character count: 159

The article discusses managing user location privacy and permissions using the Geolocation API, emphasizing best practices for requesting permissions, ensuring data security, and complying with privacy laws.

This article details creating interactive HTML5 games using JavaScript. It covers game design, HTML structure, CSS styling, JavaScript logic (including event handling and animation), and audio integration. Essential JavaScript libraries (Phaser, Pi

The article explains how to use the HTML5 Drag and Drop API to create interactive user interfaces, detailing steps to make elements draggable, handle key events, and enhance user experience with custom feedback. It also discusses common pitfalls to a

This article explains the HTML5 WebSockets API for real-time, bidirectional client-server communication. It details client-side (JavaScript) and server-side (Python/Flask) implementations, addressing challenges like scalability, state management, an


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

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver Mac version
Visual web development tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

Atom editor mac version download
The most popular open source editor

SublimeText3 Linux new version
SublimeText3 Linux latest version
