aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage-google/youtube-channel.reel/youtube-channel.html
blob: 65ffc945a8757665e12a6c203e83a7e6ef72d140 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<!-- <copyright>
 This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
 No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
 (c) Copyright 2011 Motorola Mobility, Inc.  All Rights Reserved.
 </copyright> -->
<html>
    <head>
    <title></title>
    <script type="text/montage-serialization">
    {
        "player": {
            "prototype": "youtube-player.reel",
            "properties": {
                "element": {"#": "player"}
            }
        },
        "imageA": {
            "prototype": "montage/ui/image.reel",
            "properties": {
                "element": {"#": "imageA"}
            }
        },
        "imageB": {
            "prototype": "montage/ui/image.reel",
            "properties": {
                "element": {"#": "imageB"}
            }
        },
        "imageC": {
            "prototype": "montage/ui/image.reel",
            "properties": {
                "element": {"#": "imageC"}
            }
        },
        "button": {
            "prototype": "montage/ui/button.reel",
            "properties": {
                "element": {"#": "close"}
            }
        },

        "owner": {
            "name": "YoutubeChannel",
            "properties": {
                "element": {"#": "container"},
                "player": {"@": "player"},
                "_popupElement": {"#": "popup"},
                "imageA": {"@": "imageA"},
                "imageB": {"@": "imageB"},
                "imageC": {"@": "imageC"}
            }
        }
    }
    </script>
    <style type="text/css">
        .montage-youtube-channel {
            width: 370px;
            position: relative;
            -webkit-transform-style: preserve-3d;
        }

        .montage-youtube-channel img {
            cursor: pointer;
            height: 90px;
            width: 120px;
            background-color: #000;
            opacity: 1;

            visibility: visible;
            -webkit-transition: all 0.5s ease-in-out;
        }
        .montage-youtube-channel.show img {
            opacity: 0;
            visibility: hidden;
        }

        .montage-youtube-channel-popup {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;

            opacity: 0;
            visibility: hidden;
            -webkit-transform: scale3d(0, 0, 1);
            -webkit-transition: all 0.5s ease-in-out;
        }
        .montage-youtube-channel-popup.show {
            opacity: 1;
            visibility: visible;
            -webkit-transform: scale3d(1, 1, 1);
        }

        .montage-youtube-channel-close {
            position: absolute;
            top: 5px;
            right: 5px;

            width: 25px;
            height: 25px;

            background: #333;
            border: 1px solid #999;
            border-radius: 3px;

            color: #EEE;
            outline: none;
            text-align: center;
            padding: 0;
        }

        .montage-youtube-channel .montage-youtube-player {
            border-top: 35px solid #000;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
        }
    </style>
</head>
<body>
    <div data-montage-id="container" class="montage-youtube-channel">
        <img src="" alt="" data-montage-id="imageA">
        <img src="" alt="" data-montage-id="imageB">
        <img src="" alt="" data-montage-id="imageC">

        <div data-montage-id="popup" class="montage-youtube-channel-popup" class="hide">
            <button data-montage-id="close" class="montage-youtube-channel-close">×</button>
            <div data-montage-id="player"></div>
        </div>
    </div>
</body>
</html>