SlideShare ist ein Scribd-Unternehmen logo
1 von 4
Replicating the iPhone Swipe Gesture
– Vertical swiping
For the full post, visit the actual blog post link:
http://jbkflex.wordpress.com/2013/02/14/replicating-the-iphone-swipe-gesture-vertical-swiping/


For those who wanted a vertical swiping feature to the the swipe gesture gallery that I
created earlier, this post has a new demo and minimal explanation about a vertical swipe
gesture gallery. Now you can swipe the images up or down.
I will not go through the basics once again as I have explained them in details in my previous
posts. You can refer them once again in these two tutorials – post 1, post 2. Check out the demo
below. Open the link in a webkit browser in either your mobile device or your computer.
Demo link: http://rialab.jbk404.site50.net/swipegesture/vertical/
Below is a screenshot of the gallery in action. You can see that the images are being moved
vertically.




                           Screenshot of vertical swiping through images

Code Changes
There are not any major changes in the code. The logic is still the same. For vertical movement,
you just need to calculate the distance covered by your finger/mouse in y-direction and then
move the gallery by that distance in the y-axis. I have described the basic logic completely in my
previous post. So check it out to have a clear understanding of making a swipe gesture effect
with simple javascript and css3 transitions/transformation.
I will quickly talk on the changes that I made to make the swipe gesture go from horizontal x-
direction to vertical y-direction.
CSS
I have commented the line below. That’s not needed now.
#wrapper ul li


{


    /*float:left;*/


}


HTML
No changes.
JavaScript
I do have some changes. Let’s see what they are,
1) Firstly startX and distanceX have been renamed to startY and distanceY , since we are
only concerned with y-axis.
2) Next change is in the dimension of the slideContainer <ul> element,


swipey.slideContainer.style.width = swipey.preferredWidth + "px";


swipey.slideContainer.style.height = (swipey.slides.length *
swipey.preferredHeight) + "px";


The height value has now increased to a multiple of the number of slides.


3) Max distance now depends on the height,


swipey.maxDistance = swipey.slides.length * swipey.preferredHeight;


4) Then inside the startHandler() method, startY is initialized as follows,
swipey.startY = eventObj.pageY;


Remember we are concerned with y-direction for vertical movement.


5) Then inside moveHandler() method we calculate the net distance moved in y-direction as
follows,


swipey.distanceY = eventObj.pageY - swipey.startY;


And we translate the <ul> container in y-axis using CSS3 Tranformations,


swipey.slideContainer.style.webkitTransform = "translate3d(0," +
(swipey.distanceY + swipey.currentDistance) + "px,0)";


6) Next changes lies inside the endHandler() method,


if (swipey.distanceY > 0) {


    swipey.direction = "down"; //since we are moving down. Earlier we set this
as "right".


}


if (swipey.distanceY < 0) {


    swipey.direction = "up"; //since we are moving up. Earlier we set this as
"left"


}


//the following conditions have been discussed in details


if ((swipey.direction == "down" && swipey.currentDistance == 0) ||
(swipey.direction == "up" && swipey.currentDistance == -(swipey.maxDistance -
swipey.preferredHeight))) {
    swipey.comeBack();
}
7) Final changes are inside moveUp(), moveDown() and comeBack() methods. They are similar
changes. So let’s look at one of them,


swipey.currentDistance += -swipey.preferredHeight; //currentDistance has now
to be updated by the height, since we are moving in y-dir.


And then we translate the <ul> container in y-axis using CSS3 tranformations.


swipey.slideContainer.style.webkitTransform = "translate3d(0," +
swipey.currentDistance + "px,0)";


And that’s it. These are enough for the images to be swiped vertically.


Check out the demo once again. In case you need the code, just right click and view the source.
For any queries feel free to post a comment below.

Weitere ähnliche Inhalte

Mehr von Joseph Khan

BackboneJS Training - Giving Backbone to your applications
BackboneJS Training - Giving Backbone to your applicationsBackboneJS Training - Giving Backbone to your applications
BackboneJS Training - Giving Backbone to your applicationsJoseph Khan
 
Creating dynamic SVG elements in JavaScript
Creating dynamic SVG elements in JavaScriptCreating dynamic SVG elements in JavaScript
Creating dynamic SVG elements in JavaScriptJoseph Khan
 
Replicating the Swipe Gesture iPhone Gallery for mobile web– HTML5 – Part 2
Replicating the Swipe Gesture iPhone Gallery for mobile web– HTML5 – Part 2Replicating the Swipe Gesture iPhone Gallery for mobile web– HTML5 – Part 2
Replicating the Swipe Gesture iPhone Gallery for mobile web– HTML5 – Part 2Joseph Khan
 
Customizing the list control - Sencha Touch mobile web application
Customizing the list control - Sencha Touch mobile web applicationCustomizing the list control - Sencha Touch mobile web application
Customizing the list control - Sencha Touch mobile web applicationJoseph Khan
 
Introduction to Adobe Flex - Zaloni
Introduction to Adobe Flex - ZaloniIntroduction to Adobe Flex - Zaloni
Introduction to Adobe Flex - ZaloniJoseph Khan
 
Building Cool apps with flex
Building Cool apps with flexBuilding Cool apps with flex
Building Cool apps with flexJoseph Khan
 

Mehr von Joseph Khan (6)

BackboneJS Training - Giving Backbone to your applications
BackboneJS Training - Giving Backbone to your applicationsBackboneJS Training - Giving Backbone to your applications
BackboneJS Training - Giving Backbone to your applications
 
Creating dynamic SVG elements in JavaScript
Creating dynamic SVG elements in JavaScriptCreating dynamic SVG elements in JavaScript
Creating dynamic SVG elements in JavaScript
 
Replicating the Swipe Gesture iPhone Gallery for mobile web– HTML5 – Part 2
Replicating the Swipe Gesture iPhone Gallery for mobile web– HTML5 – Part 2Replicating the Swipe Gesture iPhone Gallery for mobile web– HTML5 – Part 2
Replicating the Swipe Gesture iPhone Gallery for mobile web– HTML5 – Part 2
 
Customizing the list control - Sencha Touch mobile web application
Customizing the list control - Sencha Touch mobile web applicationCustomizing the list control - Sencha Touch mobile web application
Customizing the list control - Sencha Touch mobile web application
 
Introduction to Adobe Flex - Zaloni
Introduction to Adobe Flex - ZaloniIntroduction to Adobe Flex - Zaloni
Introduction to Adobe Flex - Zaloni
 
Building Cool apps with flex
Building Cool apps with flexBuilding Cool apps with flex
Building Cool apps with flex
 

Kürzlich hochgeladen

Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodJuan lago vázquez
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingEdi Saputra
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyKhushali Kathiriya
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businesspanagenda
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 

Kürzlich hochgeladen (20)

Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 

Replicating the iPhone Swipe Gesture – Vertical swiping

  • 1. Replicating the iPhone Swipe Gesture – Vertical swiping For the full post, visit the actual blog post link: http://jbkflex.wordpress.com/2013/02/14/replicating-the-iphone-swipe-gesture-vertical-swiping/ For those who wanted a vertical swiping feature to the the swipe gesture gallery that I created earlier, this post has a new demo and minimal explanation about a vertical swipe gesture gallery. Now you can swipe the images up or down. I will not go through the basics once again as I have explained them in details in my previous posts. You can refer them once again in these two tutorials – post 1, post 2. Check out the demo below. Open the link in a webkit browser in either your mobile device or your computer. Demo link: http://rialab.jbk404.site50.net/swipegesture/vertical/ Below is a screenshot of the gallery in action. You can see that the images are being moved vertically. Screenshot of vertical swiping through images Code Changes There are not any major changes in the code. The logic is still the same. For vertical movement, you just need to calculate the distance covered by your finger/mouse in y-direction and then
  • 2. move the gallery by that distance in the y-axis. I have described the basic logic completely in my previous post. So check it out to have a clear understanding of making a swipe gesture effect with simple javascript and css3 transitions/transformation. I will quickly talk on the changes that I made to make the swipe gesture go from horizontal x- direction to vertical y-direction. CSS I have commented the line below. That’s not needed now. #wrapper ul li { /*float:left;*/ } HTML No changes. JavaScript I do have some changes. Let’s see what they are, 1) Firstly startX and distanceX have been renamed to startY and distanceY , since we are only concerned with y-axis. 2) Next change is in the dimension of the slideContainer <ul> element, swipey.slideContainer.style.width = swipey.preferredWidth + "px"; swipey.slideContainer.style.height = (swipey.slides.length * swipey.preferredHeight) + "px"; The height value has now increased to a multiple of the number of slides. 3) Max distance now depends on the height, swipey.maxDistance = swipey.slides.length * swipey.preferredHeight; 4) Then inside the startHandler() method, startY is initialized as follows,
  • 3. swipey.startY = eventObj.pageY; Remember we are concerned with y-direction for vertical movement. 5) Then inside moveHandler() method we calculate the net distance moved in y-direction as follows, swipey.distanceY = eventObj.pageY - swipey.startY; And we translate the <ul> container in y-axis using CSS3 Tranformations, swipey.slideContainer.style.webkitTransform = "translate3d(0," + (swipey.distanceY + swipey.currentDistance) + "px,0)"; 6) Next changes lies inside the endHandler() method, if (swipey.distanceY > 0) { swipey.direction = "down"; //since we are moving down. Earlier we set this as "right". } if (swipey.distanceY < 0) { swipey.direction = "up"; //since we are moving up. Earlier we set this as "left" } //the following conditions have been discussed in details if ((swipey.direction == "down" && swipey.currentDistance == 0) || (swipey.direction == "up" && swipey.currentDistance == -(swipey.maxDistance - swipey.preferredHeight))) { swipey.comeBack();
  • 4. } 7) Final changes are inside moveUp(), moveDown() and comeBack() methods. They are similar changes. So let’s look at one of them, swipey.currentDistance += -swipey.preferredHeight; //currentDistance has now to be updated by the height, since we are moving in y-dir. And then we translate the <ul> container in y-axis using CSS3 tranformations. swipey.slideContainer.style.webkitTransform = "translate3d(0," + swipey.currentDistance + "px,0)"; And that’s it. These are enough for the images to be swiped vertically. Check out the demo once again. In case you need the code, just right click and view the source. For any queries feel free to post a comment below.