diff options
author | Jose Antonio Marquez | 2012-02-15 20:37:48 -0800 |
---|---|---|
committer | Jose Antonio Marquez | 2012-02-15 20:37:48 -0800 |
commit | 89b5e793ea88ef235b54b6e1d1c379698d3e612b (patch) | |
tree | 4d29118f35df77ca6b423119a4ff61694a442cbf /node_modules/ninja-components/image3d.reel/image3d.js | |
parent | 9d2c2a80483415d7560b00cda5519153db23e241 (diff) | |
parent | d366c0bd1af6471511217ed574083e15059519b5 (diff) | |
download | ninja-89b5e793ea88ef235b54b6e1d1c379698d3e612b.tar.gz |
Merge branch 'refs/heads/NinjaInternal' into Color
Diffstat (limited to 'node_modules/ninja-components/image3d.reel/image3d.js')
-rw-r--r-- | node_modules/ninja-components/image3d.reel/image3d.js | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/node_modules/ninja-components/image3d.reel/image3d.js b/node_modules/ninja-components/image3d.reel/image3d.js new file mode 100644 index 00000000..d9b7b302 --- /dev/null +++ b/node_modules/ninja-components/image3d.reel/image3d.js | |||
@@ -0,0 +1,30 @@ | |||
1 | /* <copyright> | ||
2 | This file contains proprietary software owned by Motorola Mobility, Inc.<br/> | ||
3 | No 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 | |||
7 | var Montage = require("montage").Montage, | ||
8 | Component = require("ui/component").Component; | ||
9 | |||
10 | var 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 | ||