aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/ui/youtube-channel.reel/youtube-channel.html
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/montage/ui/youtube-channel.reel/youtube-channel.html')
-rw-r--r--node_modules/montage/ui/youtube-channel.reel/youtube-channel.html103
1 files changed, 103 insertions, 0 deletions
diff --git a/node_modules/montage/ui/youtube-channel.reel/youtube-channel.html b/node_modules/montage/ui/youtube-channel.reel/youtube-channel.html
new file mode 100644
index 00000000..96d823a5
--- /dev/null
+++ b/node_modules/montage/ui/youtube-channel.reel/youtube-channel.html
@@ -0,0 +1,103 @@
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 <title></title>
10 <script type="text/montage-serialization">
11 {
12 "player": {
13 "prototype": "montage/ui/youtube-player.reel",
14 "properties": {
15 "element": {"#": "player"}
16 }
17 },
18 "imageA": {
19 "prototype": "montage/ui/image.reel",
20 "properties": {
21 "element": {"#": "imageA"}
22 }
23 },
24 "imageB": {
25 "prototype": "montage/ui/image.reel",
26 "properties": {
27 "element": {"#": "imageB"}
28 }
29 },
30 "imageC": {
31 "prototype": "montage/ui/image.reel",
32 "properties": {
33 "element": {"#": "imageC"}
34 }
35 },
36
37 "owner": {
38 "module": "montage/ui/youtube-channel.reel",
39 "name": "YoutubeChannel",
40 "properties": {
41 "element": {"#": "container"},
42 "player": {"@": "player"},
43 "_popupElement": {"#": "popup"},
44 "imageA": {"@": "imageA"},
45 "imageB": {"@": "imageB"},
46 "imageC": {"@": "imageC"}
47 }
48 }
49 }
50 </script>
51 <style type="text/css">
52 .montage-youtube-channel {
53 width: 370px;
54 }
55
56 .montage-youtube-channel img {
57 cursor: pointer;
58 height: 90px;
59 width: 120px;
60 background-color: #000;
61 opacity: 1;
62
63 -webkit-transition: opacity 0.5s ease-in-out;
64 }
65 .montage-youtube-channel.show img {
66 opacity: 0;
67 }
68
69 .montage-youtube-channel .montage-youtube-channel-popup {
70 width: 640px;
71 border: 5px solid #000;
72 border-radius: 5px;
73
74 position: fixed;
75 top: 50%;
76 margin-top: -192px;
77 left: 50%;
78 margin-left: -320px;
79
80 z-index: 9000;
81
82 opacity: 0;
83 visibility: hidden;
84 -webkit-transition: all 0.5s ease-in-out;
85 }
86 .montage-youtube-channel.show .montage-youtube-channel-popup {
87 opacity: 1;
88 visibility: visible;
89 }
90 </style>
91</head>
92<body>
93 <div data-montage-id="container" class="montage-youtube-channel">
94 <img src="" alt="" data-montage-id="imageA">
95 <img src="" alt="" data-montage-id="imageB">
96 <img src="" alt="" data-montage-id="imageC">
97
98 <div data-montage-id="popup" class="montage-youtube-channel-popup" class="hide">
99 <div data-montage-id="player"></div>
100 </div>
101 </div>
102</body>
103</html>