diff options
author | Valerio Virgillito | 2012-05-11 14:46:51 -0700 |
---|---|---|
committer | Valerio Virgillito | 2012-05-11 14:46:51 -0700 |
commit | 1fb663b5f348fe2ff5ce86a80e8a61be289eba70 (patch) | |
tree | 7ccb54a07eb4adf793bae3f1a4ddd622bd4f9a0c /js/document/templates/banner/index.html | |
parent | 647a7cf0697debe7b3d6fa0d68cd6b37996d6b59 (diff) | |
parent | d2e1d4eeba4439ed26f2adf1c34991caf44a591f (diff) | |
download | ninja-1fb663b5f348fe2ff5ce86a80e8a61be289eba70.tar.gz |
Merge pull request #222 from joseeight/Document
Adding partial support for templates
Diffstat (limited to 'js/document/templates/banner/index.html')
-rwxr-xr-x | js/document/templates/banner/index.html | 94 |
1 files changed, 94 insertions, 0 deletions
diff --git a/js/document/templates/banner/index.html b/js/document/templates/banner/index.html new file mode 100755 index 00000000..2cd82f51 --- /dev/null +++ b/js/document/templates/banner/index.html | |||
@@ -0,0 +1,94 @@ | |||
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 | |||
8 | |||
9 | <!-- | ||
10 | NOTE(s): | ||
11 | All elements in the head of the document to be exclude from I/O | ||
12 | must set the 'data-ninja-template' | ||
13 | data-ninja-template="true" | ||
14 | --> | ||
15 | <html> | ||
16 | |||
17 | <head> | ||
18 | |||
19 | <style type="text/css" id="nj-stage-stylesheet" data-ninja-template="true"> | ||
20 | * { | ||
21 | -webkit-transition-duration: 0s !important; | ||
22 | -webkit-animation-duration: 0s !important; | ||
23 | -webkit-animation-name: none !important; | ||
24 | } | ||
25 | |||
26 | body { | ||
27 | margin: 0; | ||
28 | padding: 0; | ||
29 | position: absolute; | ||
30 | -webkit-transform-style: preserve-3d; | ||
31 | -webkit-transform: perspective(1400) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); | ||
32 | } | ||
33 | |||
34 | html { | ||
35 | overflow: scroll; | ||
36 | } | ||
37 | |||
38 | html, body { | ||
39 | width: 100%; | ||
40 | height: 100%; | ||
41 | background: #666; | ||
42 | } | ||
43 | |||
44 | ninjaloadinghack { | ||
45 | display: none; | ||
46 | } | ||
47 | |||
48 | .active-element-outline { | ||
49 | outline: #adff2f solid 2px; | ||
50 | } | ||
51 | |||
52 | .nj-preset-transition { | ||
53 | -webkit-transition: all 450ms linear !important; | ||
54 | } | ||
55 | |||
56 | ninja-banner { | ||
57 | display: block; | ||
58 | margin: 0; | ||
59 | padding: 0; | ||
60 | border: 0; | ||
61 | position: absolute; | ||
62 | overflow: visible; | ||
63 | top: 50%; | ||
64 | left: 50%; | ||
65 | background: #FFF; | ||
66 | } | ||
67 | </style> | ||
68 | |||
69 | <script type="text/javascript" data-ninja-template="true"> | ||
70 | function getElement(x,y) { | ||
71 | return document.elementFromPoint(x,y); | ||
72 | } | ||
73 | </script> | ||
74 | |||
75 | <!-- TODO: Determine if loading Montage is always needed or if it could be done author-time or on file open --> | ||
76 | |||
77 | <script type="text/javascript" data-package="." src="../../../../node_modules/montage/montage.js" data-ninja-template="true"></script> | ||
78 | |||
79 | <script type="text/montage-serialization" data-ninja-template="true"> | ||
80 | { | ||
81 | "owner": { | ||
82 | "prototype": "main" | ||
83 | } | ||
84 | } | ||
85 | </script> | ||
86 | |||
87 | </head> | ||
88 | |||
89 | <body> | ||
90 | <ninjaloadinghack></ninjaloadinghack> | ||
91 | <ninja-banner></ninja-banner> | ||
92 | </body> | ||
93 | |||
94 | </html> \ No newline at end of file | ||