OLD | NEW |
| (Empty) |
1 <!DOCTYPE html> | |
2 | |
3 <!-- Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | |
4 for details. All rights reserved. Use of this source code is governed by a | |
5 BSD-style license that can be found in the LICENSE file. --> | |
6 | |
7 <html> | |
8 <head> | |
9 <meta charset="utf-8"> | |
10 <title>Swipe Demo</title> | |
11 <link rel="stylesheet" href="swipe.css"> | |
12 </head> | |
13 <body> | |
14 <h1>Swipe</h1> | |
15 | |
16 <p>A demo using touch gestures and CSS 3D transforms.</p> | |
17 | |
18 <div id="container"> | |
19 <div id="container2"> | |
20 <div id="target"> | |
21 <figure>.</figure> | |
22 <figure>Able</figure> | |
23 <figure>was</figure> | |
24 <figure>I</figure> | |
25 <figure>ere</figure> | |
26 <figure>I</figure> | |
27 <figure>saw</figure> | |
28 <figure>Elba</figure> | |
29 </div> | |
30 </div> | |
31 </div> | |
32 | |
33 <footer> | |
34 <p id="summary">Spin the figure with the left and right arrow keys | |
35 (or use swipe gestures on touch devices).</p> | |
36 <p id="notes"> </p> | |
37 </footer> | |
38 | |
39 <script type="application/dart" src="swipe.dart"></script> | |
40 <script src="packages/browser/dart.js"></script> | |
41 </body> | |
42 </html> | |
OLD | NEW |