diff options
Diffstat (limited to 'js/components/slider.reel/slider.html')
-rw-r--r-- | js/components/slider.reel/slider.html | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/js/components/slider.reel/slider.html b/js/components/slider.reel/slider.html new file mode 100644 index 00000000..b30d20a2 --- /dev/null +++ b/js/components/slider.reel/slider.html | |||
@@ -0,0 +1,38 @@ | |||
1 | <!DOCTYPE html> | ||
2 | <!-- <copyright> | ||
3 | This file contains proprietary software owned by Motorola Mobility, Inc.<br/> | ||
4 | No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/> | ||
5 | (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. | ||
6 | </copyright> --> | ||
7 | <html> | ||
8 | <head> | ||
9 | <meta http-equiv="content-type" content="text/html; charset=utf-8" /> | ||
10 | <link rel="stylesheet" type="text/css" href="slider.css"> | ||
11 | |||
12 | <script type="text/montage-serialization"> | ||
13 | { | ||
14 | "owner": { | ||
15 | "module": "js/components/slider.reel", | ||
16 | "name": "Slider", | ||
17 | "properties": { | ||
18 | "element": {"#": "slider"}, | ||
19 | "parentDiv": {"#": "parentDiv"}, | ||
20 | "track": {"#": "slider_track"}, | ||
21 | "knob": {"#": "knob"} | ||
22 | |||
23 | } | ||
24 | } | ||
25 | } | ||
26 | </script> | ||
27 | |||
28 | |||
29 | </head> | ||
30 | <body> | ||
31 | <div id="slider" class="slider"> | ||
32 | <div id="parentDiv" class="slider-parent"> | ||
33 | <canvas id="slider_track" class="slider-track"></canvas> | ||
34 | <div id="knob" class="knob"></div> | ||
35 | </div> | ||
36 | </div> | ||
37 | </body> | ||
38 | </html> \ No newline at end of file | ||