aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/ui/image3d.reel/image3d.js
diff options
context:
space:
mode:
authorPierre Frisch2011-12-22 07:25:50 -0800
committerValerio Virgillito2012-01-27 11:18:17 -0800
commitb89a7ee8b956c96a1dcee995ea840feddc5d4b27 (patch)
tree0f3136ab0ecdbbbed6a83576581af0a53124d6f1 /node_modules/montage/ui/image3d.reel/image3d.js
parent2401f05d1f4b94d45e4568b81fc73e67b969d980 (diff)
downloadninja-b89a7ee8b956c96a1dcee995ea840feddc5d4b27.tar.gz
First commit of Ninja to ninja-internal
Signed-off-by: Valerio Virgillito <rmwh84@motorola.com>
Diffstat (limited to 'node_modules/montage/ui/image3d.reel/image3d.js')
-rw-r--r--node_modules/montage/ui/image3d.reel/image3d.js30
1 files changed, 30 insertions, 0 deletions
diff --git a/node_modules/montage/ui/image3d.reel/image3d.js b/node_modules/montage/ui/image3d.reel/image3d.js
new file mode 100644
index 00000000..d9b7b302
--- /dev/null
+++ b/node_modules/montage/ui/image3d.reel/image3d.js
@@ -0,0 +1,30 @@
1/* <copyright>
2This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
3No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
4(c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved.
5</copyright> */
6
7var Montage = require("montage").Montage,
8 Component = require("ui/component").Component;
9
10var Image3D = exports.Image3D = Montage.create(Component, {
11
12 _data: {value: null},
13
14 data: {
15 set: function(value) {
16 this._data = value;
17 this.needsDraw = true;
18 }
19 },
20
21 draw: {
22 value: function() {
23 this._element.style.background = "url(" + this._data["src"] + ")";
24 this.left.textContent = this._data["text"];
25 this.right.textContent = this._data["text"];
26 //this.left.style.background = "-webkit-gradient(linear, left top, left bottom, from(rgba(50,50,50,.7)), color-stop(10%, rgba(10,10,10,.5)), to(black)) left top no-repeat, url(" + this._src + ") left top no-repeat";
27 //this.left.style.backgroundSize="10000% 10000%";
28 }
29 }
30}); \ No newline at end of file