SlideShare a Scribd company logo
1 of 7
Replicating the Swipe Gesture iPhone Gallery for mobile web– HTML5
– Part 1
http://jbkflex.wordpress.com/2012/01/09/replicating-the-swipe-gesture-iphone-gallery-for-mobile-
web-html5-part-1/

In this tutorial we will talk about building up a Swipe Gesture photo gallery for iPhone, iPod using web technologies –
HTML5, CSS3 and JavaScript. To begin with, you might have viewed pictures in your iPhone or iPod photo library
and may remember how you used to swipe your finger across the screen of your device to view the next or the
previous image in the gallery. The same thing we are going to replicate and make a mobile web app. Our app will run
full screen on the mobile safari browser so this gives it a native look n feel. The features of this mobile web app
replicate the iPhone photo library’s default behaviors,
1.   Gently swipe across the screen left or right to view the neighboring images.
2.   Flickering of images. Swipe across quickly to view neighboring images. I say it harsh swipe across the screen.
3.   Current Image comes back if you do not swipe it enough across the screen.
4.   When the beginning or end of the list is reached, no matter how much you swipe the image always comes back.
First, view a desktop version of the demo to get a feel, drag your mouse over the picture left or right to view other
images and try out the features that I have just talked about (View in web-kit browsers – Chrome or
Safari):http://jbk404.site50.net/html5/mobile/swipey/
The same thing we are going to replicate for the mobile device. Now, our app is targeted for mobile web kitbrowsers
so it will run even on Android browsers. That’s the good thing about a mobile web app, write once run everywhere.
Below we have two images of the app running in my iPod Touch,




                                       An image/slide showing up in portrait mode
Change of slides when swiping

What is a Swipe gesture?
When you use your finger to drag on the mobile device’s screen it is called a swipe gesture. It is equivalent of a
mouse drag over a desktop browser. Remember that our app is a single touch application and not a multi touch app.
Even the default iPhone photo gallery is a single touch app. That means you can use only one finger at a time to
operate. Check out this video to get an idea:


The basic concept to start with
I have a picture above that explains the entire process. We have images placed inside <li> elements which acts as
slides and all these <li> elements are placed inside an <ul> element. The <li> elements are laid out horizontally since
we are building a horizontal gallery. This can easily be done by using float:left CSS property.

<div id="wrapper">

      <ul id="panelContainer">

        <li>

         <img src="img/1.jpg" width="100%" height="100%"/>

        </li>

        <li>

         <img src="img/2.jpg" width="100%" height="100%" />

        </li>

        .....

      </ul>

</div>


Now, we basically have to move the <ul> element (our slides container) left or right using CSS3 transition and
transformations (Hardware accelerated CSS3 transitions, this makes the animation much smooth) based on the
user’s swiping gesture interaction on the device screen. Ofcourse we have the four features that we have talked
about earlier and need to keep that in mind. So our transition and movements should follow these features and we
will have to code it out accordingly. We will talk about it later. Finally we have all our slides and the container inside a
wrapper. The wrapper is a <div> element with overflow:hidden. The wrapper occupies the entire browser screen
and acts as a masking element. This ensures that only one slide/image is seen at a time.
Preparing the slides
As I have already talked about, each image is placed inside a <li> element and let’s consider it to be a slide. So, we
place multiple such slides inside an <ul> element which is our slide container (Refer the HTML block above).
Normally, in an unordered list the <li> elements are placed vertically. To place the slides horizontally, this is how to do
it,

#wrapper ul

{

      list-style:none;

      margin:0;
padding:0;

    -webkit-transition: -webkit-transform 0.3s linear;

}

#wrapper ul li

{

 float:left;

}


We have set a float:left to our slides. And to the unordered list – the <ul> element we have set list-
style:none,padding and margin to 0. One important thing to note is that for our slides to be placed horizontally we
have to set enough width to the slide container (<ul>) so that there is room for all the slides and there is no slide
wrapping i.e placing slides in a new line after full width is reached. I will talk about this in the java script part. First,
let’s check out the full HTML and CSS needed for our app,

body

{

    margin:0;

    padding:10px;

}




#wrapper

{

    overflow:hidden;

}




#wrapper ul

{

    list-style:none;
margin:0;

    padding:0;

    -webkit-transition: -webkit-transform 0.3s linear;

}




#wrapper ul li

{

    float:left;

}

<!DOCTYPE html>

<html>

<head>

<title>Swipe Gesture - Gallery</title>

<meta name="apple-mobile-web-app-capable" content="yes" />

<meta name="viewport" content="initial-scale=1.0; minimum-scale=1.0; maximum-
scale=1.0;" />

<link href="css/styles.css" rel="Stylesheet" />

</head>

<body>

    <div id="wrapper">

     <ul id="slideContainer">

       <li>

          <img src="img/1.jpg" width="100%" height="100%"/>

       </li>

       <li>
<img src="img/2.jpg" width="100%" height="100%" />

     </li>

     <li>

          <img src="img/3.jpg" width="100%" height="100%" />

     </li>

     <li>

          <img src="img/4.jpg" width="100%" height="100%" />

     </li>

     <li>

          <img src="img/5.jpg" width="100%" height="100%"/>

     </li>

     <li>

          <img src="img/6.jpg" width="100%" height="100%"/>

     </li>

     <li>

          <img src="img/7.jpg" width="100%" height="100%"/>

     </li>

    </ul>

  </div>

</body>

<script type="text/javascript" src="js/scripts.js">

</script>

</html>
We have a total of 7 images/slides. You can add as much images/slides as you want and the app will adjust
automatically. This looks pretty simple isn’t it. Now, let’s check the java script code needed for handling all our
interactions in our next part- Part2
Link to desktop version of the demo : http://jbk404.site50.net/html5/mobile/swipey/

More Related Content

Recently uploaded

Recently uploaded (20)

Optimizing NoSQL Performance Through Observability
Optimizing NoSQL Performance Through ObservabilityOptimizing NoSQL Performance Through Observability
Optimizing NoSQL Performance Through Observability
 
Where to Learn More About FDO _ Richard at FIDO Alliance.pdf
Where to Learn More About FDO _ Richard at FIDO Alliance.pdfWhere to Learn More About FDO _ Richard at FIDO Alliance.pdf
Where to Learn More About FDO _ Richard at FIDO Alliance.pdf
 
TEST BANK For, Information Technology Project Management 9th Edition Kathy Sc...
TEST BANK For, Information Technology Project Management 9th Edition Kathy Sc...TEST BANK For, Information Technology Project Management 9th Edition Kathy Sc...
TEST BANK For, Information Technology Project Management 9th Edition Kathy Sc...
 
IESVE for Early Stage Design and Planning
IESVE for Early Stage Design and PlanningIESVE for Early Stage Design and Planning
IESVE for Early Stage Design and Planning
 
ASRock Industrial FDO Solutions in Action for Industrial Edge AI _ Kenny at A...
ASRock Industrial FDO Solutions in Action for Industrial Edge AI _ Kenny at A...ASRock Industrial FDO Solutions in Action for Industrial Edge AI _ Kenny at A...
ASRock Industrial FDO Solutions in Action for Industrial Edge AI _ Kenny at A...
 
What's New in Teams Calling, Meetings and Devices April 2024
What's New in Teams Calling, Meetings and Devices April 2024What's New in Teams Calling, Meetings and Devices April 2024
What's New in Teams Calling, Meetings and Devices April 2024
 
Speed Wins: From Kafka to APIs in Minutes
Speed Wins: From Kafka to APIs in MinutesSpeed Wins: From Kafka to APIs in Minutes
Speed Wins: From Kafka to APIs in Minutes
 
ECS 2024 Teams Premium - Pretty Secure
ECS 2024   Teams Premium - Pretty SecureECS 2024   Teams Premium - Pretty Secure
ECS 2024 Teams Premium - Pretty Secure
 
Measures in SQL (a talk at SF Distributed Systems meetup, 2024-05-22)
Measures in SQL (a talk at SF Distributed Systems meetup, 2024-05-22)Measures in SQL (a talk at SF Distributed Systems meetup, 2024-05-22)
Measures in SQL (a talk at SF Distributed Systems meetup, 2024-05-22)
 
Connecting the Dots in Product Design at KAYAK
Connecting the Dots in Product Design at KAYAKConnecting the Dots in Product Design at KAYAK
Connecting the Dots in Product Design at KAYAK
 
Top 10 Symfony Development Companies 2024
Top 10 Symfony Development Companies 2024Top 10 Symfony Development Companies 2024
Top 10 Symfony Development Companies 2024
 
The UX of Automation by AJ King, Senior UX Researcher, Ocado
The UX of Automation by AJ King, Senior UX Researcher, OcadoThe UX of Automation by AJ King, Senior UX Researcher, Ocado
The UX of Automation by AJ King, Senior UX Researcher, Ocado
 
Google I/O Extended 2024 Warsaw
Google I/O Extended 2024 WarsawGoogle I/O Extended 2024 Warsaw
Google I/O Extended 2024 Warsaw
 
How Red Hat Uses FDO in Device Lifecycle _ Costin and Vitaliy at Red Hat.pdf
How Red Hat Uses FDO in Device Lifecycle _ Costin and Vitaliy at Red Hat.pdfHow Red Hat Uses FDO in Device Lifecycle _ Costin and Vitaliy at Red Hat.pdf
How Red Hat Uses FDO in Device Lifecycle _ Costin and Vitaliy at Red Hat.pdf
 
AI presentation and introduction - Retrieval Augmented Generation RAG 101
AI presentation and introduction - Retrieval Augmented Generation RAG 101AI presentation and introduction - Retrieval Augmented Generation RAG 101
AI presentation and introduction - Retrieval Augmented Generation RAG 101
 
Linux Foundation Edge _ Overview of FDO Software Components _ Randy at Intel.pdf
Linux Foundation Edge _ Overview of FDO Software Components _ Randy at Intel.pdfLinux Foundation Edge _ Overview of FDO Software Components _ Randy at Intel.pdf
Linux Foundation Edge _ Overview of FDO Software Components _ Randy at Intel.pdf
 
AI revolution and Salesforce, Jiří Karpíšek
AI revolution and Salesforce, Jiří KarpíšekAI revolution and Salesforce, Jiří Karpíšek
AI revolution and Salesforce, Jiří Karpíšek
 
SOQL 201 for Admins & Developers: Slice & Dice Your Org’s Data With Aggregate...
SOQL 201 for Admins & Developers: Slice & Dice Your Org’s Data With Aggregate...SOQL 201 for Admins & Developers: Slice & Dice Your Org’s Data With Aggregate...
SOQL 201 for Admins & Developers: Slice & Dice Your Org’s Data With Aggregate...
 
A Business-Centric Approach to Design System Strategy
A Business-Centric Approach to Design System StrategyA Business-Centric Approach to Design System Strategy
A Business-Centric Approach to Design System Strategy
 
Extensible Python: Robustness through Addition - PyCon 2024
Extensible Python: Robustness through Addition - PyCon 2024Extensible Python: Robustness through Addition - PyCon 2024
Extensible Python: Robustness through Addition - PyCon 2024
 

Featured

How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
ThinkNow
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
Kurio // The Social Media Age(ncy)
 

Featured (20)

Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
 
12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work
 

Replicating the Swipe Gesture iPhone Gallery for mobile web– HTML5 – Part 1

  • 1. Replicating the Swipe Gesture iPhone Gallery for mobile web– HTML5 – Part 1 http://jbkflex.wordpress.com/2012/01/09/replicating-the-swipe-gesture-iphone-gallery-for-mobile- web-html5-part-1/ In this tutorial we will talk about building up a Swipe Gesture photo gallery for iPhone, iPod using web technologies – HTML5, CSS3 and JavaScript. To begin with, you might have viewed pictures in your iPhone or iPod photo library and may remember how you used to swipe your finger across the screen of your device to view the next or the previous image in the gallery. The same thing we are going to replicate and make a mobile web app. Our app will run full screen on the mobile safari browser so this gives it a native look n feel. The features of this mobile web app replicate the iPhone photo library’s default behaviors, 1. Gently swipe across the screen left or right to view the neighboring images. 2. Flickering of images. Swipe across quickly to view neighboring images. I say it harsh swipe across the screen. 3. Current Image comes back if you do not swipe it enough across the screen. 4. When the beginning or end of the list is reached, no matter how much you swipe the image always comes back. First, view a desktop version of the demo to get a feel, drag your mouse over the picture left or right to view other images and try out the features that I have just talked about (View in web-kit browsers – Chrome or Safari):http://jbk404.site50.net/html5/mobile/swipey/ The same thing we are going to replicate for the mobile device. Now, our app is targeted for mobile web kitbrowsers so it will run even on Android browsers. That’s the good thing about a mobile web app, write once run everywhere. Below we have two images of the app running in my iPod Touch, An image/slide showing up in portrait mode
  • 2. Change of slides when swiping What is a Swipe gesture? When you use your finger to drag on the mobile device’s screen it is called a swipe gesture. It is equivalent of a mouse drag over a desktop browser. Remember that our app is a single touch application and not a multi touch app. Even the default iPhone photo gallery is a single touch app. That means you can use only one finger at a time to operate. Check out this video to get an idea: The basic concept to start with
  • 3. I have a picture above that explains the entire process. We have images placed inside <li> elements which acts as slides and all these <li> elements are placed inside an <ul> element. The <li> elements are laid out horizontally since we are building a horizontal gallery. This can easily be done by using float:left CSS property. <div id="wrapper"> <ul id="panelContainer"> <li> <img src="img/1.jpg" width="100%" height="100%"/> </li> <li> <img src="img/2.jpg" width="100%" height="100%" /> </li> ..... </ul> </div> Now, we basically have to move the <ul> element (our slides container) left or right using CSS3 transition and transformations (Hardware accelerated CSS3 transitions, this makes the animation much smooth) based on the user’s swiping gesture interaction on the device screen. Ofcourse we have the four features that we have talked about earlier and need to keep that in mind. So our transition and movements should follow these features and we will have to code it out accordingly. We will talk about it later. Finally we have all our slides and the container inside a wrapper. The wrapper is a <div> element with overflow:hidden. The wrapper occupies the entire browser screen and acts as a masking element. This ensures that only one slide/image is seen at a time. Preparing the slides As I have already talked about, each image is placed inside a <li> element and let’s consider it to be a slide. So, we place multiple such slides inside an <ul> element which is our slide container (Refer the HTML block above). Normally, in an unordered list the <li> elements are placed vertically. To place the slides horizontally, this is how to do it, #wrapper ul { list-style:none; margin:0;
  • 4. padding:0; -webkit-transition: -webkit-transform 0.3s linear; } #wrapper ul li { float:left; } We have set a float:left to our slides. And to the unordered list – the <ul> element we have set list- style:none,padding and margin to 0. One important thing to note is that for our slides to be placed horizontally we have to set enough width to the slide container (<ul>) so that there is room for all the slides and there is no slide wrapping i.e placing slides in a new line after full width is reached. I will talk about this in the java script part. First, let’s check out the full HTML and CSS needed for our app, body { margin:0; padding:10px; } #wrapper { overflow:hidden; } #wrapper ul { list-style:none;
  • 5. margin:0; padding:0; -webkit-transition: -webkit-transform 0.3s linear; } #wrapper ul li { float:left; } <!DOCTYPE html> <html> <head> <title>Swipe Gesture - Gallery</title> <meta name="apple-mobile-web-app-capable" content="yes" /> <meta name="viewport" content="initial-scale=1.0; minimum-scale=1.0; maximum- scale=1.0;" /> <link href="css/styles.css" rel="Stylesheet" /> </head> <body> <div id="wrapper"> <ul id="slideContainer"> <li> <img src="img/1.jpg" width="100%" height="100%"/> </li> <li>
  • 6. <img src="img/2.jpg" width="100%" height="100%" /> </li> <li> <img src="img/3.jpg" width="100%" height="100%" /> </li> <li> <img src="img/4.jpg" width="100%" height="100%" /> </li> <li> <img src="img/5.jpg" width="100%" height="100%"/> </li> <li> <img src="img/6.jpg" width="100%" height="100%"/> </li> <li> <img src="img/7.jpg" width="100%" height="100%"/> </li> </ul> </div> </body> <script type="text/javascript" src="js/scripts.js"> </script> </html>
  • 7. We have a total of 7 images/slides. You can add as much images/slides as you want and the app will adjust automatically. This looks pretty simple isn’t it. Now, let’s check the java script code needed for handling all our interactions in our next part- Part2 Link to desktop version of the demo : http://jbk404.site50.net/html5/mobile/swipey/