@realsee/vreo 0.2.0-alpha.1 → 0.2.0-alpha.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (97) hide show
  1. package/README.md +104 -17
  2. package/docs/assets/custom.css +4 -4
  3. package/docs/assets/search.js +1 -1
  4. package/docs/classes/Player.Controller.html +54 -0
  5. package/docs/classes/Player.Player-1.html +9 -9
  6. package/docs/classes/Player.VideoAgentMesh.html +142 -0
  7. package/docs/classes/Player.VideoAgentScene.html +1 -0
  8. package/docs/enums/Player.InfoPanelStyleEnum.html +1 -0
  9. package/docs/enums/Player.InfoPanelTypeEnum.html +1 -1
  10. package/docs/enums/Player.PanoEffectEnum.html +2 -2
  11. package/docs/enums/Player.PanoTagEnum.html +1 -1
  12. package/docs/enums/Player.PanoTagStyleEnum.html +7 -0
  13. package/docs/enums/Player.VreoKeyframeEnum.html +13 -13
  14. package/docs/enums/fivePlugins.CameraMovementEffect.html +1 -1
  15. package/docs/enums/fivePlugins.Rotation.html +1 -1
  16. package/docs/index.html +53 -20
  17. package/docs/interfaces/Player.CustomVreoKeyframeProps.html +1 -0
  18. package/docs/interfaces/Player.PlayerConfigs.html +3 -3
  19. package/docs/interfaces/Player.Vertex.html +1 -1
  20. package/docs/interfaces/Player.VideoAgentMeshOptions.html +1 -0
  21. package/docs/interfaces/Player.VreoKeyframe.html +1 -1
  22. package/docs/interfaces/Player.VreoUnit.html +1 -1
  23. package/docs/interfaces/Player.VreoVideo.html +1 -1
  24. package/docs/interfaces/fivePlugins.CameraMovementOptsCallback.html +1 -1
  25. package/docs/interfaces/fivePlugins.CameraMovementPluginExportType.html +3 -3
  26. package/docs/interfaces/fivePlugins.CameraMovementPluginParameterType.html +1 -1
  27. package/docs/interfaces/fivePlugins.ModelTVVideoPluginData.html +1 -1
  28. package/docs/interfaces/fivePlugins.ModelTVVideoPluginExportType.html +1 -1
  29. package/docs/interfaces/fivePlugins.ModelTVVideoPluginParameterType.html +1 -1
  30. package/docs/interfaces/react.VreoActionCallbacks.html +15 -7
  31. package/docs/interfaces/react.VreoProviderProps.html +1 -0
  32. package/docs/modules/Player.html +17 -15
  33. package/docs/modules/custom.html +3 -0
  34. package/docs/modules/fivePlugins.html +2 -2
  35. package/docs/modules/react.html +1 -1
  36. package/docs/modules.html +1 -1
  37. package/lib/PlayController/createHTMLAudioElement.d.ts +1 -0
  38. package/lib/PlayController/createHTMLAudioElement.js +47 -0
  39. package/lib/PlayController/index.d.ts +38 -0
  40. package/lib/PlayController/index.js +300 -0
  41. package/lib/Player/App.js +4 -3
  42. package/lib/Player/Controller.d.ts +2 -0
  43. package/lib/Player/Controller.js +14 -0
  44. package/lib/Player/custom/SpatialScenePanel/index.d.ts +22 -0
  45. package/lib/Player/custom/SpatialScenePanel/index.js +279 -0
  46. package/lib/Player/index.d.ts +2 -2
  47. package/lib/Player/index.js +102 -12
  48. package/lib/Player/modules/PopUp/index.d.ts +2 -0
  49. package/lib/Player/modules/PopUp/index.js +43 -0
  50. package/lib/Player/modules/VideoAgent/VideoAgentMesh.d.ts +2 -1
  51. package/lib/Player/modules/VideoAgent/VideoAgentMesh.js +26 -20
  52. package/lib/Player/modules/VideoAgent/VideoAgentScene.d.ts +4 -1
  53. package/lib/Player/modules/VideoAgent/VideoAgentScene.js +2 -1
  54. package/lib/Player/modules/VideoAgent/index.d.ts +2 -0
  55. package/lib/Player/modules/VideoAgent/index.js +1 -1
  56. package/lib/Player/modules/keyframes/CameraMovement/index.js +41 -5
  57. package/lib/Player/modules/keyframes/InfoPanel/index.js +84 -36
  58. package/lib/Player/modules/keyframes/ModelVideo/index.js +45 -8
  59. package/lib/Player/modules/keyframes/PanoTag/index.js +19 -6
  60. package/lib/Player/modules/keyframes/PanoTextLabel/index.js +4 -12
  61. package/lib/Player/modules/keyframes/Prompter/index.js +4 -18
  62. package/lib/Player/modules/keyframes/UpdateVRPanorama/index.js +30 -18
  63. package/lib/Player/typings.d.ts +15 -2
  64. package/lib/fivePlugins/CameraMovementPlugin/index.js +104 -90
  65. package/lib/fivePlugins/CameraMovementPlugin/typings.d.ts +1 -0
  66. package/lib/react/index.d.ts +12 -4
  67. package/lib/react/index.js +3 -3
  68. package/lib/shared-utils/createTransMatrix.d.ts +1 -0
  69. package/lib/shared-utils/createTransMatrix.js +43 -0
  70. package/lib/typings/VreoUnit.d.ts +32 -6
  71. package/lib/typings/VreoUnit.js +26 -6
  72. package/package.json +6 -6
  73. package/resources/PlayController/createHTMLAudioElement.ts +53 -0
  74. package/resources/PlayController/index.ts +167 -0
  75. package/resources/Player/App.tsx +3 -1
  76. package/resources/Player/Controller.ts +12 -0
  77. package/resources/Player/custom/SpatialScenePanel/index.tsx +264 -0
  78. package/resources/Player/index.tsx +59 -4
  79. package/resources/Player/modules/PopUp/index.tsx +26 -0
  80. package/resources/Player/modules/VideoAgent/VideoAgentMesh.ts +7 -6
  81. package/resources/Player/modules/VideoAgent/VideoAgentScene.ts +2 -2
  82. package/resources/Player/modules/VideoAgent/index.tsx +3 -2
  83. package/resources/Player/modules/keyframes/CameraMovement/index.tsx +7 -3
  84. package/resources/Player/modules/keyframes/InfoPanel/index.tsx +90 -23
  85. package/resources/Player/modules/keyframes/ModelVideo/index.tsx +36 -3
  86. package/resources/Player/modules/keyframes/PanoTag/index.tsx +31 -12
  87. package/resources/Player/modules/keyframes/PanoTextLabel/index.tsx +2 -2
  88. package/resources/Player/modules/keyframes/Prompter/index.tsx +5 -15
  89. package/resources/Player/modules/keyframes/UpdateVRPanorama/index.tsx +25 -16
  90. package/resources/Player/typings.ts +17 -2
  91. package/resources/fivePlugins/CameraMovementPlugin/index.ts +59 -48
  92. package/resources/fivePlugins/CameraMovementPlugin/typings.ts +2 -1
  93. package/resources/react/index.tsx +14 -5
  94. package/resources/shared-utils/createTransMatrix.ts +12 -0
  95. package/resources/typings/VreoUnit.ts +42 -7
  96. package/stylesheets/custom/SpatialScenePanel.css +309 -0
  97. package/stylesheets/default.css +116 -10
@@ -0,0 +1,309 @@
1
+ @keyframes SpatialScenePanel-panel-sprites-animation {
2
+ 0% {
3
+ background-position: 0 0
4
+ }
5
+
6
+ 100% {
7
+ background-position: -330rem 0
8
+ }
9
+ }
10
+
11
+
12
+ @keyframes SpatialScenePanel-opacity-animation {
13
+ 0% {
14
+ opacity: .3
15
+ }
16
+
17
+ 100% {
18
+ opacity: 1
19
+ }
20
+ }
21
+
22
+ @keyframes SpatialScenePanel-dot-sprites-animation {
23
+ 0% {
24
+ background-position: 0 0
25
+ }
26
+
27
+ 100% {
28
+ background-position: -31.25rem 0
29
+ }
30
+ }
31
+
32
+ @keyframes SpatialScenePanel-line-sprites-animation {
33
+ 0% {
34
+ background-position: 0 0
35
+ }
36
+
37
+ 100% {
38
+ background-position: -9.583333333333334rem 0
39
+ }
40
+ }
41
+
42
+ .vreo-SpatialScenePanel {
43
+ width: 10rem;
44
+ height: 13.4375rem;
45
+ position: fixed;
46
+ top: 0;
47
+ left: 0;
48
+ pointer-events: none;
49
+ user-select: none
50
+ }
51
+
52
+ .SpatialScenePanel {
53
+ width: 10rem;
54
+ height: 13.4375rem;
55
+ transform: scale3d(1,1,1);
56
+ transform-origin: center;
57
+ position: fixed;
58
+ left: 3rem;
59
+ top: 3rem;
60
+ }
61
+
62
+ .SpatialScenePanel-show-area {
63
+ width: 100%;
64
+ height: 100%;
65
+ transform: scale3d(1,1,1);
66
+ transform-origin: center;
67
+ position: absolute
68
+ }
69
+
70
+ .SpatialScenePanel-show-area .SpatialScenePanel-bg {
71
+ width: 10rem;
72
+ height: 13.4375rem;
73
+ position: absolute;
74
+ top: 50%;
75
+ left: 50%;
76
+ transform: translate3d(-50%,-50%,0);
77
+ background-image: url("//vrlab-static.ljcdn.com/release/web/VoiceAssistant/images/panel-min.7d9ba2b7.png");
78
+ background-size: 340rem 13.4375rem;
79
+ background-repeat: no-repeat;
80
+ z-index: -1;
81
+ }
82
+
83
+ .SpatialScenePanel-bg--animation {
84
+ /* animation: SpatialScenePanel-panel-sprites-animation 1.375s 0s steps(33) infinite normal; */
85
+ animation: SpatialScenePanel-panel-sprites-animation 1.375s 0.5s steps(33) normal;
86
+ }
87
+
88
+
89
+ .SpatialScenePanel-show-area .SpatialScenePanel-header {
90
+ width: 7.5rem;
91
+ height: 1.375rem;
92
+ display: -ms-flexbox;
93
+ display: flex;
94
+ justify-content: space-between;
95
+ background-image: url("//vrlab-static.ljcdn.com/release/web/VoiceAssistant/images/title-bg.377af865.png");
96
+ background-size: 100%;
97
+ margin: 1.875rem auto 1.25rem auto;
98
+ background-image: linear-gradient(to left, rgba(234, 208, 154, 0), rgb(255 229 176 / 21%) 47%, rgba(234, 208, 154, 0));
99
+ border-bottom: 1px solid rgb(255 255 255 / 10%);
100
+ border-radius: 2px;
101
+ }
102
+
103
+ .SpatialScenePanel-show-area .SpatialScenePanel-header .SpatialScenePanel-title {
104
+ font-family: PingFangSC-Medium;
105
+ font-size: 1.0625rem;
106
+ color: #ffe5b0;
107
+ letter-spacing: 0;
108
+ line-height: 1.125;
109
+ text-shadow: 0 0 1.25rem rgba(0,0,0,0.15)
110
+ }
111
+
112
+ .SpatialScenePanel-show-area .SpatialScenePanel-header .SpatialScenePanel-temperature {
113
+ font-family: PingFangSC-Semibold;
114
+ font-size: .625rem;
115
+ color: rgba(255,229,176,0.6);
116
+ letter-spacing: 0;
117
+ line-height: 1.25rem;
118
+ text-shadow: 0 0 .625rem rgba(255,255,255,0.03);
119
+ align-self: flex-end
120
+ }
121
+
122
+ .SpatialScenePanel-show-area .SpatialScenePanel-body {
123
+ position: relative;
124
+ padding: 0 1.25rem
125
+ }
126
+
127
+ .SpatialScenePanel-show-area .SpatialScenePanel-body .SpatialScenePanel-item {
128
+ position: relative;
129
+ display: -ms-flexbox;
130
+ display: flex;
131
+ align-items: center;
132
+ margin-bottom: 1rem;
133
+ width: 100%
134
+ }
135
+
136
+ .SpatialScenePanel-show-area .SpatialScenePanel-body .SpatialScenePanel-text {
137
+ opacity: .3;
138
+ font-family: PingFangSC-Regular;
139
+ font-size: .75rem;
140
+ color: #fff;
141
+ letter-spacing: 0;
142
+ line-height: .75rem
143
+ }
144
+
145
+ .SpatialScenePanel-show-area .SpatialScenePanel-body .SpatialScenePanel-icon {
146
+ opacity: .3;
147
+ width: 1rem;
148
+ height: 1rem;
149
+ margin-right: .375rem;
150
+ flex-shrink: 0
151
+ }
152
+
153
+ .SpatialScenePanel-show-area .SpatialScenePanel-body .SpatialScenePanel-dot {
154
+ position: absolute;
155
+ width: 1.25rem;
156
+ height: 1.25rem;
157
+ flex-shrink: 0;
158
+ display: -ms-flexbox;
159
+ display: flex;
160
+ justify-content: center;
161
+ align-items: center;
162
+ right: -.625rem
163
+ }
164
+
165
+ .SpatialScenePanel-show-area .SpatialScenePanel-body .SpatialScenePanel-dot::before {
166
+ display: block;
167
+ position: absolute;
168
+ width: .25rem;
169
+ height: .25rem;
170
+ background: #c3d5ff;
171
+ opacity: .3;
172
+ content: '';
173
+ z-index: 1;
174
+ border-radius: 100%
175
+ }
176
+
177
+ .SpatialScenePanel-show-area .SpatialScenePanel-body .SpatialScenePanel-dot::after {
178
+ display: block;
179
+ position: absolute;
180
+ content: '';
181
+ z-index: 2
182
+ }
183
+
184
+ .SpatialScenePanel.show .SpatialScenePanel-disappear-area {
185
+ display: none
186
+ }
187
+
188
+ .SpatialScenePanel.show .SpatialScenePanel-show-area {
189
+ transform: scale3d(1,1,1);
190
+ transition: -webkit-transform 1s linear;
191
+ transition: transform 1s linear;
192
+ transition: transform 1s linear, -webkit-transform 1s linear
193
+ }
194
+
195
+ .SpatialScenePanel .SpatialScenePanel-body .SpatialScenePanel-item.index_0 .SpatialScenePanel-text,.SpatialScenePanel .SpatialScenePanel-body .SpatialScenePanel-item.index_0 .SpatialScenePanel-icon {
196
+ animation: SpatialScenePanel-opacity-animation 1s 1s 1 normal forwards
197
+ }
198
+
199
+ .SpatialScenePanel .SpatialScenePanel-body .SpatialScenePanel-item.index_0 .SpatialScenePanel-dot::before {
200
+ animation: SpatialScenePanel-opacity-animation 1s 1s 1 normal forwards
201
+ }
202
+
203
+ .SpatialScenePanel .SpatialScenePanel-body .SpatialScenePanel-item.index_0 .SpatialScenePanel-dot::after {
204
+ width: 2.083333333333333rem;
205
+ height: 2.083333333333333rem;
206
+ position: absolute;
207
+ top: 50%;
208
+ left: 50%;
209
+ transform: translate3d(-50%,-50%,0);
210
+ background-image: url("//vrlab-static.ljcdn.com/release/web/VoiceAssistant/images/dot.54b5e078.png");
211
+ background-size: 33.333333333333336rem 2.083333333333333rem;
212
+ background-repeat: no-repeat;
213
+ animation: SpatialScenePanel-dot-sprites-animation 1s 1s steps(15) 1 normal
214
+ }
215
+
216
+ .SpatialScenePanel .SpatialScenePanel-body .SpatialScenePanel-item.index_1 .SpatialScenePanel-text,.SpatialScenePanel .SpatialScenePanel-body .SpatialScenePanel-item.index_1 .SpatialScenePanel-icon {
217
+ animation: SpatialScenePanel-opacity-animation 1s 2s 1 normal forwards
218
+ }
219
+
220
+ .SpatialScenePanel .SpatialScenePanel-body .SpatialScenePanel-item.index_1 .SpatialScenePanel-dot::before {
221
+ animation: SpatialScenePanel-opacity-animation 1s 2s 1 normal forwards
222
+ }
223
+
224
+ .SpatialScenePanel .SpatialScenePanel-body .SpatialScenePanel-item.index_1 .SpatialScenePanel-dot::after {
225
+ width: 2.083333333333333rem;
226
+ height: 2.083333333333333rem;
227
+ position: absolute;
228
+ top: 50%;
229
+ left: 50%;
230
+ transform: translate3d(-50%,-50%,0);
231
+ background-image: url("//vrlab-static.ljcdn.com/release/web/VoiceAssistant/images/dot.54b5e078.png");
232
+ background-size: 33.333333333333336rem 2.083333333333333rem;
233
+ background-repeat: no-repeat;
234
+ animation: SpatialScenePanel-dot-sprites-animation 1s 2s steps(15) 1 normal
235
+ }
236
+
237
+ .SpatialScenePanel .SpatialScenePanel-body .SpatialScenePanel-item.index_2 .SpatialScenePanel-text,.SpatialScenePanel .SpatialScenePanel-body .SpatialScenePanel-item.index_2 .SpatialScenePanel-icon {
238
+ animation: SpatialScenePanel-opacity-animation 1s 3s 1 normal forwards
239
+ }
240
+
241
+ .SpatialScenePanel .SpatialScenePanel-body .SpatialScenePanel-item.index_2 .SpatialScenePanel-dot::before {
242
+ animation: SpatialScenePanel-opacity-animation 1s 3s 1 normal forwards
243
+ }
244
+
245
+ .SpatialScenePanel .SpatialScenePanel-body .SpatialScenePanel-item.index_2 .SpatialScenePanel-dot::after {
246
+ width: 2.083333333333333rem;
247
+ height: 2.083333333333333rem;
248
+ position: absolute;
249
+ top: 50%;
250
+ left: 50%;
251
+ transform: translate3d(-50%,-50%,0);
252
+ background-image: url("//vrlab-static.ljcdn.com/release/web/VoiceAssistant/images/dot.54b5e078.png");
253
+ background-size: 33.333333333333336rem 2.083333333333333rem;
254
+ background-repeat: no-repeat;
255
+ animation: SpatialScenePanel-dot-sprites-animation 1s 3s steps(15) 1 normal
256
+ }
257
+
258
+ .SpatialScenePanel .SpatialScenePanel-body .SpatialScenePanel-item.index_3 .SpatialScenePanel-text,.SpatialScenePanel .SpatialScenePanel-body .SpatialScenePanel-item.index_3 .SpatialScenePanel-icon {
259
+ animation: SpatialScenePanel-opacity-animation 1s 4s 1 normal forwards
260
+ }
261
+
262
+ .SpatialScenePanel .SpatialScenePanel-body .SpatialScenePanel-item.index_3 .SpatialScenePanel-dot::before {
263
+ animation: SpatialScenePanel-opacity-animation 1s 4s 1 normal forwards
264
+ }
265
+
266
+ .SpatialScenePanel .SpatialScenePanel-body .SpatialScenePanel-item.index_3 .SpatialScenePanel-dot::after {
267
+ width: 2.083333333333333rem;
268
+ height: 2.083333333333333rem;
269
+ position: absolute;
270
+ top: 50%;
271
+ left: 50%;
272
+ transform: translate3d(-50%,-50%,0);
273
+ background-image: url("//vrlab-static.ljcdn.com/release/web/VoiceAssistant/images/dot.54b5e078.png");
274
+ background-size: 33.333333333333336rem 2.083333333333333rem;
275
+ background-repeat: no-repeat;
276
+ animation: SpatialScenePanel-dot-sprites-animation 1s 4s steps(15) 1 normal
277
+ }
278
+
279
+ .SpatialScenePanel.hide .SpatialScenePanel-show-area {
280
+ transform: scale3d(0,1,1);
281
+ transition: transform 150ms linear;
282
+ }
283
+
284
+ .SpatialScenePanel.hide .SpatialScenePanel-disappear-area {
285
+ display: -ms-flexbox;
286
+ display: flex;
287
+ width: 1.25rem;
288
+ height: 13.4375rem;
289
+ justify-content: center;
290
+ align-items: center
291
+ }
292
+
293
+ .SpatialScenePanel.hide .SpatialScenePanel-disappear-area::after {
294
+ content: '';
295
+ width: 100%;
296
+ height: 100%;
297
+ position: absolute;
298
+ width: .4166666666666667rem;
299
+ height: 11.666666666666666rem;
300
+ position: absolute;
301
+ top: 50%;
302
+ left: 50%;
303
+ transform: translate3d(-50%,-50%,0);
304
+ background-image: url("//vrlab-static.ljcdn.com/release/web/VoiceAssistant/images/line.4ac1c0bb.png");
305
+ background-size: 10rem 11.666666666666666rem;
306
+ background-repeat: no-repeat;
307
+ animation: SpatialScenePanel-line-sprites-animation 500ms 100ms steps(23) 1 normal
308
+ }
309
+
@@ -2,8 +2,8 @@
2
2
  position: fixed;
3
3
  top: 0;
4
4
  left: 0;
5
- width: 100vw;
6
- height: 100vh;
5
+ width: 100%;
6
+ height: 100%;
7
7
  pointer-events: none;
8
8
  }
9
9
 
@@ -31,7 +31,7 @@
31
31
  position: fixed;
32
32
  bottom: 0;
33
33
  left: 0;
34
- width: 100vw;
34
+ width: 100%;
35
35
  height: 150px;
36
36
  color: white;
37
37
  transition: transform 0.5s;
@@ -131,36 +131,44 @@
131
131
  width: 250px;
132
132
  font-size: 14px;
133
133
  opacity: 1;
134
- transition: opacity 0.5s;
134
+ transition: opacity 0.1s;
135
135
  }
136
+
136
137
  .vreo-prompter--audio {
137
138
  top: 72px;
138
139
  left: 64px;
139
140
  }
141
+
140
142
  .vreo-prompter-innerText {
141
143
  position: absolute;
142
144
  left: 0;
143
145
  top: 0;
144
146
  padding-right: 10px;
145
147
  }
148
+
149
+ .vreo-prompter--audio .vreo-prompter-innerText {
150
+ padding-right: 0;
151
+ text-align: center;
152
+ width: 100%;
153
+ }
146
154
  .vreo-prompter--hidden {
147
155
  opacity: 0;
148
156
  }
149
157
 
150
- .vreo-prompter-text-transition-enter-active {
158
+ /* .vreo-prompter-text-transition-enter-active {
151
159
  opacity: 0;
152
- }
160
+ } */
153
161
 
154
- .vreo-prompter-text-transition-enter-done {
162
+ /* .vreo-prompter-text-transition-enter-done {
155
163
  opacity: 1;
156
164
  transition: opacity 1000ms;
157
- }
158
-
165
+ } */
166
+ /*
159
167
  .vreo-prompter-text-transition-exit-active,
160
168
  .vreo-prompter-text-transition-exit-done {
161
169
  opacity: 0;
162
170
  transition: opacity 500ms;
163
- }
171
+ } */
164
172
 
165
173
  .VideoEffect {
166
174
  position: absolute;
@@ -187,6 +195,27 @@
187
195
  opacity: 0;
188
196
  }
189
197
 
198
+ .PanoTag--expand {
199
+ transform: translate(-50%, -50%);
200
+ color: white;
201
+ min-width: 150px;
202
+ max-width: 200px;
203
+ margin-top: 4px;
204
+ }
205
+
206
+ .PanoTag--expand .PanoTag-box.PanoTag-box--Text {
207
+ display: flex;
208
+ justify-content: center;
209
+ align-items: center;
210
+ padding-bottom: 4px;
211
+ }
212
+
213
+ .PanoTag-guideline {
214
+ width: 100%;
215
+ background: linear-gradient(45deg, transparent 20% ,white, transparent 80%);
216
+ height: 3px;
217
+ }
218
+
190
219
  .PanoTag--notHidden {
191
220
  opacity: 1;
192
221
  }
@@ -485,6 +514,13 @@
485
514
  display: block;
486
515
  }
487
516
 
517
+ .vreo-infoPanelWrapper {
518
+ flex: 1;
519
+ display: flex;
520
+ justify-content: center;
521
+ align-items: center;
522
+ }
523
+
488
524
  .vreo-infoPanel {
489
525
  width: 100%;
490
526
  height: 100%;
@@ -532,7 +568,77 @@
532
568
  background-position: center center;
533
569
  }
534
570
 
571
+ .vreo-infoPanelVideo {
572
+ max-width: 412px;
573
+ }
574
+
535
575
  .vreo-panel--hidden .vreo-panel-inner {
536
576
  opacity: 0;
537
577
  transition: opacity 0.45s;
538
578
  }
579
+
580
+ .vreo-PopUp {
581
+ position: absolute;
582
+ left: 0;
583
+ top: 0;
584
+ width: 100%;
585
+ height: 100%;
586
+ pointer-events: none;
587
+ background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7) 65%);
588
+ opacity: 0;
589
+ transition: opacity .45s;
590
+ display: flex;
591
+ justify-content: center;
592
+ align-items: center;
593
+ }
594
+
595
+ .vreo-PopUp.vreo-PopUp-visible {
596
+ opacity: 1;
597
+ pointer-events: all;
598
+ }
599
+
600
+ .vreo-PopUp-inner {
601
+ width: 339px;
602
+ height: 425px;
603
+ position: relative;
604
+ }
605
+
606
+ @media only screen and (min-width: 1080px) {
607
+ .vreo-PopUp-inner {
608
+ width: 678px;
609
+ height: 620px;
610
+ position: relative;
611
+ }
612
+ .vreo-infoPanelVideo {
613
+ max-width: 100%;
614
+ }
615
+ }
616
+
617
+ .vreo-PopUp-inner .vreo-infoPanel {
618
+ background-color: initial;
619
+ justify-content: center;
620
+ }
621
+
622
+ .vreo-PopUp-inner .vreo-infoPanel-title {
623
+ position: absolute;
624
+ bottom: 32px;
625
+ left: 0;
626
+ z-index: 1;
627
+ flex-direction: column;
628
+ justify-content: end;
629
+ height: 200px;
630
+ background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
631
+ }
632
+
633
+ .vreo-PopUp-inner .vreo-infoPanel-title .vreo-infoPanel-t1 {
634
+ padding-left: 0;
635
+ font-size: 20px;
636
+ font-weight: 600;
637
+ padding-bottom: 14px;
638
+ }
639
+
640
+ .vreo-PopUp-inner .vreo-infoPanel-title .vreo-infoPanel-t2 {
641
+ padding: 0 0 24px 0;
642
+ font-size: 14px;
643
+ opacity: 0.85;
644
+ }