This page scrolled only vertically on iPhone, and is locked horizontally.
You can accomplish it by the following settings:
  • Set the screen width to 320px.(in case of scale=1)
  • Add the following meta tags:
    <meta name="viewport" content = "width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no" //>
    <meta name="apple-mobile-web-app-capable" content="yes" />
    <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
The above meta tags cause a top portion of page hidden by the status bar, when the icon is put on Home Screen, so that you may want to adjust the layout to avoid it, by using the following JavaScript in onload event:
var clientHeight
= document.documentElement.clientHeight;
if (isIOS && clientHeight < 460) {
  window.scrollTo(0,0);
}

...............................
..............................
.............................
............................
..........................
.........................
........................
.......................
......................
.....................
....................
...................
..................
.................
................
...............
..............
.............
............
...........
..........
.........
........
.......
......
.....
....
...
..
.
This page is fixed for either direction on iPhone. It doesn't scroll at all.
The following setting is required for the DIV tag of this page to invalidate the move event, in addition to the settings of "Fixed Horizontally".
<div ontouchmove="event.preventDefault()">

This page emulates the swipe motion on iOS. By swiping (or mouse dragging on desktop), a delete button appears. By tapping (or clicking) it, the line will be deleted. All lines will be displayed when this page is reloaded.
It does not work on IE.
This is a 360°panorama photo which rotates by swiping action (or mouse drag on desktop). Only for horizontal direcion.
One
Two
Three
Four
The quadratic prism rotates by swipe or mouse drag.

One
Two
Three
Four
Five
Six
Seven
Eight
The octagonal prism rotates by swipe or mouse drag.
It's a variation of 3D Four Faces with modification of moddeling.

One
Two
Three
Four
Five
Six
The cube rotates by swipe or mouse drag.
log