@realsee/vreo 0.2.0-alpha.9 → 1.0.0-alpha.2
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.
- package/CHANGELOG.md +30 -0
- package/README.md +16 -5
- package/docs/assets/highlight.css +1 -1
- package/docs/assets/main.js +2 -2
- package/docs/assets/search.js +1 -1
- package/docs/assets/style.css +28 -2
- package/docs/classes/Player.AudioLike.html +52 -0
- package/docs/classes/Player.Controller.html +13 -13
- package/docs/classes/Player.Player-1.html +11 -11
- package/docs/classes/Player.VideoAgentMesh.html +53 -53
- package/docs/classes/Player.VideoAgentScene.html +1 -1
- package/docs/demo/assets/AppReact.d0ee843a.js +1 -0
- package/docs/demo/assets/default.63925584.js +3984 -0
- package/docs/demo/assets/default.f3f3ca8c.css +1 -0
- package/docs/demo/assets/dynamic.76506c2c.js +1 -0
- package/docs/demo/assets/examples.3d8323db.js +25 -0
- package/docs/demo/assets/examples.dac4a6fe.css +1 -0
- package/docs/demo/assets/index.7e31122c.js +1 -0
- package/docs/demo/assets/index.9331038f.css +1 -0
- package/docs/demo/assets/main.79b11b9d.js +1 -0
- package/docs/demo/assets/react.2ee8565f.css +1 -0
- package/docs/demo/assets/react.c1c07c14.js +25 -0
- package/docs/demo/assets/znRoyv06SZQeqA7m.0057e8ae.js +1 -0
- package/docs/demo/examples.html +17 -0
- package/docs/demo/index-react-dynamic.html +20 -0
- package/docs/demo/index-react.html +20 -0
- package/docs/demo/index.html +19 -0
- package/docs/enums/Player.InfoPanelStyleEnum.html +1 -1
- package/docs/enums/Player.InfoPanelTypeEnum.html +2 -2
- package/docs/enums/Player.PanoEffectEnum.html +2 -2
- package/docs/enums/Player.PanoTagEnum.html +2 -2
- package/docs/enums/Player.PanoTagStyleEnum.html +7 -0
- package/docs/enums/Player.VreoKeyframeEnum.html +12 -12
- package/docs/enums/fivePlugins.CameraMovementEffect.html +1 -1
- package/docs/enums/fivePlugins.Rotation.html +1 -1
- package/docs/index.html +13 -6
- package/docs/interfaces/Player.CustomVreoKeyframeProps.html +1 -1
- package/docs/interfaces/Player.PlayerConfigs.html +4 -3
- package/docs/interfaces/Player.Vertex.html +2 -2
- package/docs/interfaces/Player.VideoAgentMeshOptions.html +8 -1
- package/docs/interfaces/Player.VreoKeyframe.html +2 -2
- package/docs/interfaces/Player.VreoUnit.html +2 -2
- package/docs/interfaces/Player.VreoVideo.html +2 -2
- package/docs/interfaces/fivePlugins.CSS3DRenderPluginExportType.html +4 -0
- package/docs/interfaces/fivePlugins.CameraMovementOptsCallback.html +1 -1
- package/docs/interfaces/fivePlugins.CameraMovementPluginExportType.html +2 -2
- package/docs/interfaces/fivePlugins.CameraMovementPluginParameterType.html +1 -1
- package/docs/interfaces/fivePlugins.ModelTVVideoPluginData.html +1 -1
- package/docs/interfaces/fivePlugins.ModelTVVideoPluginExportType.html +1 -1
- package/docs/interfaces/fivePlugins.ModelTVVideoPluginParameterType.html +1 -1
- package/docs/interfaces/fivePlugins.Vector3Position.html +3 -0
- package/docs/interfaces/react.VreoActionCallbacks.html +15 -7
- package/docs/interfaces/react.VreoProviderProps.html +1 -1
- package/docs/modules/Player.html +21 -15
- package/docs/modules/custom.html +1 -1
- package/docs/modules/fivePlugins.html +5 -2
- package/docs/modules/react.html +1 -1
- package/docs/modules.html +1 -1
- package/lib/PlayController/index.js +4 -5
- package/lib/Player/App.js +9 -7
- package/lib/Player/Controller.d.ts +29 -8
- package/lib/Player/Controller.js +193 -27
- package/lib/Player/custom/SpatialScenePanel/index.js +5 -4
- package/lib/Player/hooks.js +2 -2
- package/lib/Player/index.d.ts +5 -3
- package/lib/Player/index.js +97 -53
- package/lib/Player/modules/Drawer/index.js +1 -1
- package/lib/Player/modules/PopUp/index.js +1 -1
- package/lib/Player/modules/ResizeObserver/index.d.ts +2 -0
- package/lib/Player/modules/ResizeObserver/index.js +37 -0
- package/lib/Player/modules/VideoAgent/VideoAgentMesh.d.ts +16 -2
- package/lib/Player/modules/VideoAgent/VideoAgentMesh.js +132 -59
- package/lib/Player/modules/VideoAgent/VideoAgentScene.d.ts +3 -6
- package/lib/Player/modules/VideoAgent/VideoAgentScene.js +31 -36
- package/lib/Player/modules/VideoAgent/index.js +53 -12
- package/lib/Player/modules/Wave/index.d.ts +5 -0
- package/lib/Player/modules/Wave/index.js +51 -0
- package/lib/Player/modules/keyframes/BgMusic/index.js +1 -1
- package/lib/Player/modules/keyframes/CameraMovement/index.js +1 -1
- package/lib/Player/modules/keyframes/InfoPanel/index.js +22 -10
- package/lib/Player/modules/keyframes/ModelVideo/index.js +46 -9
- package/lib/Player/modules/keyframes/PanoEffect/index.js +1 -1
- package/lib/Player/modules/keyframes/PanoEffect/lineAnime.js +1 -1
- package/lib/Player/modules/keyframes/PanoTag/index.d.ts +1 -2
- package/lib/Player/modules/keyframes/PanoTag/index.js +79 -119
- package/lib/Player/modules/keyframes/PanoTextLabel/index.d.ts +3 -0
- package/lib/Player/modules/keyframes/PanoTextLabel/index.js +96 -44
- package/lib/Player/modules/keyframes/Prompter/index.js +10 -23
- package/lib/Player/modules/keyframes/UpdateVRPanorama/index.js +10 -6
- package/lib/Player/modules/keyframes/VideoEffect/index.js +1 -1
- package/lib/Player/typings.d.ts +12 -1
- package/lib/fivePlugins/CSS3DRenderPlugin/centerPoint.d.ts +2 -0
- package/lib/fivePlugins/CSS3DRenderPlugin/centerPoint.js +12 -0
- package/lib/fivePlugins/CSS3DRenderPlugin/createResizeObserver.d.ts +7 -0
- package/lib/fivePlugins/CSS3DRenderPlugin/createResizeObserver.js +32 -0
- package/lib/fivePlugins/CSS3DRenderPlugin/evenNumber.d.ts +3 -0
- package/lib/fivePlugins/CSS3DRenderPlugin/evenNumber.js +11 -0
- package/lib/fivePlugins/CSS3DRenderPlugin/index.d.ts +56 -0
- package/lib/fivePlugins/CSS3DRenderPlugin/index.js +275 -0
- package/lib/fivePlugins/CSS3DRenderPlugin/transformPositionToVector3.d.ts +7 -0
- package/lib/fivePlugins/CSS3DRenderPlugin/transformPositionToVector3.js +18 -0
- package/lib/fivePlugins/CameraMovementPlugin/index.js +13 -12
- package/lib/fivePlugins/ModelTVVideoPlugin/index.js +1 -1
- package/lib/react/index.d.ts +8 -4
- package/lib/react/index.js +3 -3
- package/lib/shared-utils/AduioLike.d.ts +37 -0
- package/lib/shared-utils/AduioLike.js +166 -0
- package/lib/shared-utils/addResizeListener.d.ts +4 -0
- package/lib/shared-utils/addResizeListener.js +51 -0
- package/lib/shared-utils/animationFrame/BetterTween.js +7 -3
- package/lib/shared-utils/animationFrame/tween.js +1 -1
- package/lib/shared-utils/createTransMatrix.d.ts +1 -0
- package/lib/shared-utils/createTransMatrix.js +43 -0
- package/lib/shared-utils/getFileExpandedName.d.ts +1 -0
- package/lib/shared-utils/getFileExpandedName.js +13 -0
- package/lib/shared-utils/getMediaInfo.d.ts +9 -0
- package/lib/shared-utils/getMediaInfo.js +75 -0
- package/lib/shared-utils/setElementDataset.d.ts +1 -0
- package/lib/shared-utils/setElementDataset.js +24 -0
- package/lib/typings/VreoUnit.d.ts +37 -2
- package/lib/typings/VreoUnit.js +13 -1
- package/package.json +10 -10
- package/resources/PlayController/index.ts +0 -13
- package/resources/Player/App.tsx +5 -4
- package/resources/Player/Controller.ts +277 -146
- package/resources/Player/custom/SpatialScenePanel/index.tsx +5 -5
- package/resources/Player/hooks.ts +3 -5
- package/resources/Player/index.tsx +189 -141
- package/resources/Player/modules/ResizeObserver/index.tsx +23 -0
- package/resources/Player/modules/VideoAgent/VideoAgentMesh.ts +87 -31
- package/resources/Player/modules/VideoAgent/VideoAgentScene.ts +27 -24
- package/resources/Player/modules/VideoAgent/index.tsx +28 -12
- package/resources/Player/modules/Wave/index.tsx +18 -0
- package/resources/Player/modules/keyframes/InfoPanel/index.tsx +26 -11
- package/resources/Player/modules/keyframes/ModelVideo/index.tsx +36 -3
- package/resources/Player/modules/keyframes/PanoTag/index.tsx +53 -97
- package/resources/Player/modules/keyframes/PanoTextLabel/index.tsx +86 -34
- package/resources/Player/modules/keyframes/Prompter/index.tsx +6 -16
- package/resources/Player/modules/keyframes/UpdateVRPanorama/index.tsx +6 -2
- package/resources/Player/typings.ts +15 -1
- package/resources/fivePlugins/CSS3DRenderPlugin/centerPoint.ts +5 -0
- package/resources/fivePlugins/CSS3DRenderPlugin/createResizeObserver.ts +17 -0
- package/resources/fivePlugins/CSS3DRenderPlugin/evenNumber.ts +4 -0
- package/resources/fivePlugins/CSS3DRenderPlugin/index.ts +254 -0
- package/resources/fivePlugins/CSS3DRenderPlugin/transformPositionToVector3.ts +5 -0
- package/resources/fivePlugins/CameraMovementPlugin/index.ts +19 -12
- package/resources/react/index.tsx +7 -3
- package/resources/shared-utils/AduioLike.ts +109 -0
- package/resources/shared-utils/addResizeListener.ts +46 -0
- package/resources/shared-utils/createTransMatrix.ts +12 -0
- package/resources/shared-utils/getFileExpandedName.ts +6 -0
- package/resources/shared-utils/getMediaInfo.ts +52 -0
- package/resources/shared-utils/setElementDataset.ts +18 -0
- package/resources/typings/VreoUnit.ts +41 -3
- package/stylesheets/custom/SpatialScenePanel.css +2 -1
- package/stylesheets/default.css +348 -84
package/stylesheets/default.css
CHANGED
|
@@ -1,9 +1,29 @@
|
|
|
1
|
+
* {
|
|
2
|
+
-webkit-tap-highlight-color: transparent;
|
|
3
|
+
font-family: PingFangSC-Regular;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.resizeObserver-element {
|
|
7
|
+
position: absolute;
|
|
8
|
+
top: 0;
|
|
9
|
+
left: 0;
|
|
10
|
+
width: 100%;
|
|
11
|
+
height: 100%;
|
|
12
|
+
border: 0;
|
|
13
|
+
padding: 0;
|
|
14
|
+
margin: 0;
|
|
15
|
+
opacity: 0;
|
|
16
|
+
background: none;
|
|
17
|
+
overflow: hidden;
|
|
18
|
+
pointer-events: none;
|
|
19
|
+
}
|
|
20
|
+
|
|
1
21
|
.vreo-drawer {
|
|
2
22
|
position: fixed;
|
|
3
23
|
top: 0;
|
|
4
24
|
left: 0;
|
|
5
|
-
width:
|
|
6
|
-
height:
|
|
25
|
+
width: 100%;
|
|
26
|
+
height: 100%;
|
|
7
27
|
pointer-events: none;
|
|
8
28
|
}
|
|
9
29
|
|
|
@@ -31,8 +51,7 @@
|
|
|
31
51
|
position: fixed;
|
|
32
52
|
bottom: 0;
|
|
33
53
|
left: 0;
|
|
34
|
-
width:
|
|
35
|
-
height: 150px;
|
|
54
|
+
width: 100%;
|
|
36
55
|
color: white;
|
|
37
56
|
transition: transform 0.5s;
|
|
38
57
|
pointer-events: none;
|
|
@@ -41,6 +60,17 @@
|
|
|
41
60
|
align-items: center;
|
|
42
61
|
}
|
|
43
62
|
|
|
63
|
+
.vreo-app .vreo-panel,
|
|
64
|
+
.vreo-app[data-size="S"] .vreo-panel,
|
|
65
|
+
.vreo-app[data-size="M"][data-orientation="landscape"] .vreo-panel {
|
|
66
|
+
height: 130px;
|
|
67
|
+
}
|
|
68
|
+
.vreo-app[data-size="M"][data-orientation="portrait"] .vreo-panel,
|
|
69
|
+
.vreo-app[data-size="L"] .vreo-panel,
|
|
70
|
+
.vreo-app[data-size="XL"] .vreo-panel {
|
|
71
|
+
height: 160px;
|
|
72
|
+
}
|
|
73
|
+
|
|
44
74
|
.vreo-panel::before {
|
|
45
75
|
content: '';
|
|
46
76
|
position: absolute;
|
|
@@ -57,44 +87,149 @@
|
|
|
57
87
|
}
|
|
58
88
|
|
|
59
89
|
.vreo-panel-inner {
|
|
60
|
-
max-width: 375px;
|
|
61
90
|
height: 100%;
|
|
62
91
|
width: 100%;
|
|
63
92
|
position: relative;
|
|
64
93
|
}
|
|
65
94
|
|
|
66
|
-
|
|
95
|
+
.vreo-app .vreo-panel-inner,
|
|
96
|
+
.vreo-app[data-size="S"] .vreo-panel-inner,
|
|
97
|
+
.vreo-app[data-size="M"][data-orientation="landscape"] .vreo-panel-inner {
|
|
98
|
+
max-width: 375px;
|
|
99
|
+
}
|
|
100
|
+
.vreo-app[data-size="M"][data-orientation="portrait"] .vreo-panel-inner,
|
|
101
|
+
.vreo-app[data-size="L"] .vreo-panel-inner {
|
|
102
|
+
max-width: 462px;
|
|
103
|
+
}
|
|
104
|
+
.vreo-app[data-size="XL"] .vreo-panel-inner {
|
|
105
|
+
max-width: 500px;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.vreo-wave {
|
|
109
|
+
position: absolute;
|
|
110
|
+
bottom: 0;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
/* @keyframes panel-sprites-animation {
|
|
67
114
|
0% {
|
|
68
115
|
background-position: 0 0;
|
|
69
116
|
}
|
|
70
117
|
100% {
|
|
71
118
|
background-position: -17625px 0;
|
|
72
119
|
}
|
|
73
|
-
}
|
|
120
|
+
} */
|
|
74
121
|
|
|
75
|
-
.vreo-panel-inner::
|
|
122
|
+
/* .vreo-panel-inner::after {
|
|
76
123
|
content: '';
|
|
77
124
|
background-image: url('//vrlab-static.ljcdn.com/release/web/spritesheets/imgs/playing.d2312f22.png');
|
|
78
125
|
height: 30px;
|
|
79
|
-
width:
|
|
126
|
+
width: 100%;
|
|
80
127
|
background-size: 18000px 30px;
|
|
81
128
|
background-repeat: no-repeat;
|
|
82
129
|
animation: panel-sprites-animation 2.5s 0s steps(47) infinite normal;
|
|
83
130
|
position: absolute;
|
|
84
131
|
left: 0;
|
|
85
132
|
bottom: 0;
|
|
133
|
+
} */
|
|
134
|
+
|
|
135
|
+
.VideoAgent,
|
|
136
|
+
.Avatar {
|
|
137
|
+
position: absolute;
|
|
138
|
+
cursor: pointer;
|
|
86
139
|
}
|
|
87
140
|
|
|
88
141
|
.VideoAgent {
|
|
142
|
+
height: 100%;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.VideoAgent.hide {
|
|
146
|
+
opacity: 0;
|
|
147
|
+
pointer-events: none;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.vreo-app .Avatar,
|
|
151
|
+
.vreo-app[data-size="S"] .Avatar,
|
|
152
|
+
.vreo-app[data-size="M"][data-orientation="landscape"] .Avatar {
|
|
153
|
+
width: 48px;
|
|
154
|
+
left: 30px;
|
|
155
|
+
bottom: 36px;
|
|
156
|
+
}
|
|
157
|
+
.vreo-app[data-size="M"][data-orientation="portrait"] .Avatar,
|
|
158
|
+
.vreo-app[data-size="L"] .Avatar {
|
|
159
|
+
width: 56px;
|
|
160
|
+
left: 31px;
|
|
161
|
+
bottom: 42px;
|
|
162
|
+
}
|
|
163
|
+
.vreo-app[data-size="XL"] .Avatar {
|
|
164
|
+
width: 60px;
|
|
165
|
+
left: 32px;
|
|
166
|
+
bottom: 46px;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.vreo-app .VideoAgent,
|
|
170
|
+
.vreo-app[data-size="S"] .VideoAgent,
|
|
171
|
+
.vreo-app[data-size="M"][data-orientation="landscape"] .VideoAgent {
|
|
172
|
+
width: 250px;
|
|
173
|
+
}
|
|
174
|
+
.vreo-app[data-size="M"][data-orientation="portrait"] .VideoAgent,
|
|
175
|
+
.vreo-app[data-size="L"] .VideoAgent,
|
|
176
|
+
.vreo-app[data-size="XL"] .VideoAgent {
|
|
177
|
+
width: 300px;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.VideoAgent-container {
|
|
89
181
|
position: absolute;
|
|
90
|
-
left: -
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
182
|
+
left: -28%;
|
|
183
|
+
width: 100%;
|
|
184
|
+
height: 100%;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.VideoAgent-wrapper {
|
|
188
|
+
bottom: 0px;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.Avatar-wrapper {
|
|
192
|
+
bottom: 0px;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.ratio-16-9 {
|
|
196
|
+
position: absolute;
|
|
197
|
+
width: 100%;
|
|
198
|
+
padding-top: 56.25%;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.ratio-4-5 {
|
|
202
|
+
position: absolute;
|
|
203
|
+
width: 100%;
|
|
204
|
+
padding-top: 125%;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.ratio-1-1 {
|
|
208
|
+
position: absolute;
|
|
209
|
+
width: 100%;
|
|
210
|
+
padding-top: 100%;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.VideoAgent-inner {
|
|
214
|
+
position: absolute;
|
|
215
|
+
left: 0;
|
|
216
|
+
right: 0;
|
|
217
|
+
top: 0;
|
|
218
|
+
bottom: 0;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.Avatar-img {
|
|
222
|
+
position: absolute;
|
|
223
|
+
left: 0;
|
|
224
|
+
top: 0;
|
|
225
|
+
width: 100%;
|
|
226
|
+
height: 100%;
|
|
227
|
+
border-radius: 50%;
|
|
228
|
+
border: 0.5px solid rgba(255, 255, 255, 0.4);
|
|
229
|
+
pointer-events: all;
|
|
95
230
|
}
|
|
96
231
|
|
|
97
|
-
.VideoAgent::after {
|
|
232
|
+
/* .VideoAgent::after {
|
|
98
233
|
content: '';
|
|
99
234
|
position: absolute;
|
|
100
235
|
left: 0;
|
|
@@ -104,7 +239,7 @@
|
|
|
104
239
|
mask: linear-gradient(0deg, transparent 0%, #000 5%);
|
|
105
240
|
-webkit-mask: linear-gradient(0deg, transparent 0%, #000 5%);
|
|
106
241
|
pointer-events: none;
|
|
107
|
-
}
|
|
242
|
+
} */
|
|
108
243
|
|
|
109
244
|
.VideoAgent-canvas {
|
|
110
245
|
outline: none;
|
|
@@ -116,51 +251,119 @@
|
|
|
116
251
|
position: absolute;
|
|
117
252
|
top: 0;
|
|
118
253
|
left: 50%;
|
|
254
|
+
transform: translate(-50%, 0);
|
|
119
255
|
width: 50%;
|
|
120
256
|
height: 100%;
|
|
121
257
|
pointer-events: all;
|
|
122
258
|
cursor: pointer;
|
|
123
259
|
opacity: 0;
|
|
124
|
-
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
.VideoAgent.hide .VideoAgent-play {
|
|
263
|
+
opacity: 0;
|
|
264
|
+
pointer-events: none;
|
|
125
265
|
}
|
|
126
266
|
|
|
127
267
|
.vreo-prompter {
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
268
|
+
top: 64px;
|
|
269
|
+
display: flex;
|
|
270
|
+
width: 100%;
|
|
271
|
+
height: 100%;
|
|
272
|
+
justify-content: center;
|
|
133
273
|
opacity: 1;
|
|
134
|
-
transition: opacity 0.
|
|
274
|
+
transition: opacity 0.1s;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
.vreo-app .vreo-prompter.vreo-prompter-left--video .vreo-prompter-text,
|
|
278
|
+
.vreo-app[data-size="S"] .vreo-prompter.vreo-prompter-left--video .vreo-prompter-text,
|
|
279
|
+
.vreo-app[data-size="M"][data-orientation="landscape"] .vreo-prompter.vreo-prompter-left--video .vreo-prompter-text {
|
|
280
|
+
left: 130px;
|
|
135
281
|
}
|
|
136
|
-
.vreo-prompter--
|
|
137
|
-
|
|
138
|
-
|
|
282
|
+
.vreo-app[data-size="M"][data-orientation="portrait"] .vreo-prompter.vreo-prompter-left--video .vreo-prompter-text,
|
|
283
|
+
.vreo-app[data-size="L"] .vreo-prompter.vreo-prompter-left--video .vreo-prompter-text,
|
|
284
|
+
.vreo-app[data-size="XL"] .vreo-prompter.vreo-prompter-left--video .vreo-prompter-text {
|
|
285
|
+
left: 160px;
|
|
139
286
|
}
|
|
287
|
+
|
|
288
|
+
.vreo-app .vreo-prompter.vreo-prompter-left--avatar .vreo-prompter-text
|
|
289
|
+
.vreo-app[data-size="S"] .vreo-prompter.vreo-prompter-left--avatar .vreo-prompter-text,
|
|
290
|
+
.vreo-app[data-size="M"][data-orientation="landscape"] .vreo-prompter.vreo-prompter-left--avatar .vreo-prompter-text {
|
|
291
|
+
left: 102px;
|
|
292
|
+
}
|
|
293
|
+
.vreo-app[data-size="M"][data-orientation="portrait"] .vreo-prompter.vreo-prompter-left--avatar .vreo-prompter-text,
|
|
294
|
+
.vreo-app[data-size="L"] .vreo-prompter.vreo-prompter-left--avatar .vreo-prompter-text {
|
|
295
|
+
left: 119px;
|
|
296
|
+
}
|
|
297
|
+
.vreo-app[data-size="XL"] .vreo-prompter.vreo-prompter-left--avatar .vreo-prompter-text {
|
|
298
|
+
left: 132px;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.vreo-prompter.vreo-prompter-left--none .vreo-prompter-text {
|
|
302
|
+
text-align: center;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
.vreo-prompter-text {
|
|
306
|
+
position: absolute;
|
|
307
|
+
height: 0;
|
|
308
|
+
display: flex;
|
|
309
|
+
align-items: center;
|
|
310
|
+
justify-content: center;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
.vreo-app .vreo-prompter-text,
|
|
314
|
+
.vreo-app[data-size="S"] .vreo-prompter-text,
|
|
315
|
+
.vreo-app[data-size="M"][data-orientation="landscape"] .vreo-prompter-text {
|
|
316
|
+
width: 194px;
|
|
317
|
+
bottom: 60px;
|
|
318
|
+
}
|
|
319
|
+
.vreo-app[data-size="M"][data-orientation="portrait"] .vreo-prompter-text,
|
|
320
|
+
.vreo-app[data-size="L"] .vreo-prompter-text {
|
|
321
|
+
width: 253px;
|
|
322
|
+
bottom: 70px;
|
|
323
|
+
}
|
|
324
|
+
.vreo-app[data-size="XL"] .vreo-prompter-text {
|
|
325
|
+
width: 272px;
|
|
326
|
+
bottom: 76px;
|
|
327
|
+
}
|
|
328
|
+
|
|
140
329
|
.vreo-prompter-innerText {
|
|
141
330
|
position: absolute;
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
331
|
+
font-weight: bold;
|
|
332
|
+
font-size: 14px;
|
|
333
|
+
word-break: break-all;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.vreo-app .vreo-prompter-innerText,
|
|
337
|
+
.vreo-app[data-size="S"] .vreo-prompter-innerText,
|
|
338
|
+
.vreo-app[data-size="M"][data-orientation="landscape"] .vreo-prompter-innerText {
|
|
339
|
+
font-size: 14px;
|
|
340
|
+
}
|
|
341
|
+
.vreo-app[data-size="M"][data-orientation="portrait"] .vreo-prompter-innerText,
|
|
342
|
+
.vreo-app[data-size="L"] .vreo-prompter-innerText {
|
|
343
|
+
font-size: 16px;
|
|
344
|
+
}
|
|
345
|
+
.vreo-app[data-size="XL"] .vreo-prompter-innerText {
|
|
346
|
+
font-size: 18px;
|
|
145
347
|
}
|
|
348
|
+
|
|
146
349
|
.vreo-prompter--hidden {
|
|
147
350
|
opacity: 0;
|
|
148
351
|
}
|
|
149
352
|
|
|
150
|
-
.vreo-prompter-text-transition-enter-active {
|
|
353
|
+
/* .vreo-prompter-text-transition-enter-active {
|
|
151
354
|
opacity: 0;
|
|
152
|
-
}
|
|
355
|
+
} */
|
|
153
356
|
|
|
154
|
-
.vreo-prompter-text-transition-enter-done {
|
|
357
|
+
/* .vreo-prompter-text-transition-enter-done {
|
|
155
358
|
opacity: 1;
|
|
156
359
|
transition: opacity 1000ms;
|
|
157
|
-
}
|
|
158
|
-
|
|
360
|
+
} */
|
|
361
|
+
/*
|
|
159
362
|
.vreo-prompter-text-transition-exit-active,
|
|
160
363
|
.vreo-prompter-text-transition-exit-done {
|
|
161
364
|
opacity: 0;
|
|
162
365
|
transition: opacity 500ms;
|
|
163
|
-
}
|
|
366
|
+
} */
|
|
164
367
|
|
|
165
368
|
.VideoEffect {
|
|
166
369
|
position: absolute;
|
|
@@ -178,6 +381,7 @@
|
|
|
178
381
|
.VideoEffect--visible {
|
|
179
382
|
display: flex;
|
|
180
383
|
}
|
|
384
|
+
|
|
181
385
|
.VideoEffect-video {
|
|
182
386
|
height: 100%;
|
|
183
387
|
}
|
|
@@ -187,6 +391,27 @@
|
|
|
187
391
|
opacity: 0;
|
|
188
392
|
}
|
|
189
393
|
|
|
394
|
+
.PanoTag--expand {
|
|
395
|
+
transform: translate(-50%, -50%);
|
|
396
|
+
color: white;
|
|
397
|
+
min-width: 150px;
|
|
398
|
+
max-width: 200px;
|
|
399
|
+
margin-top: 4px;
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
.PanoTag--expand .PanoTag-box.PanoTag-box--Text {
|
|
403
|
+
display: flex;
|
|
404
|
+
justify-content: center;
|
|
405
|
+
align-items: center;
|
|
406
|
+
padding-bottom: 4px;
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
.PanoTag-guideline {
|
|
410
|
+
width: 100%;
|
|
411
|
+
background: linear-gradient(45deg, transparent 20% ,white, transparent 80%);
|
|
412
|
+
height: 3px;
|
|
413
|
+
}
|
|
414
|
+
|
|
190
415
|
.PanoTag--notHidden {
|
|
191
416
|
opacity: 1;
|
|
192
417
|
}
|
|
@@ -401,7 +626,11 @@
|
|
|
401
626
|
transform-style: preserve-3d;
|
|
402
627
|
pointer-events: none;
|
|
403
628
|
z-index: 999999;
|
|
404
|
-
|
|
629
|
+
}
|
|
630
|
+
.__Vreo-plugin--CSS3DRenderPlugin {
|
|
631
|
+
display: flex;
|
|
632
|
+
align-items: center;
|
|
633
|
+
justify-content: center;
|
|
405
634
|
}
|
|
406
635
|
|
|
407
636
|
@keyframes straightPopPTL {
|
|
@@ -485,35 +714,57 @@
|
|
|
485
714
|
display: block;
|
|
486
715
|
}
|
|
487
716
|
|
|
488
|
-
.vreo-
|
|
489
|
-
|
|
717
|
+
.vreo-infoPanel-container {
|
|
718
|
+
position: absolute;
|
|
719
|
+
top: 0;
|
|
720
|
+
left: 0;
|
|
721
|
+
width: 100%;
|
|
722
|
+
height: calc(100% - 68px);
|
|
490
723
|
display: flex;
|
|
491
724
|
justify-content: center;
|
|
492
725
|
align-items: center;
|
|
493
726
|
}
|
|
494
727
|
|
|
495
|
-
.vreo-infoPanel {
|
|
728
|
+
.vreo-infoPanel-wrapper {
|
|
729
|
+
position: relative;
|
|
730
|
+
}
|
|
731
|
+
|
|
732
|
+
.vreo-infoPanel-inner {
|
|
733
|
+
position: absolute;
|
|
734
|
+
left: 0;
|
|
735
|
+
top: 0;
|
|
496
736
|
width: 100%;
|
|
497
737
|
height: 100%;
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
background-color: rgba(0, 0, 0,
|
|
501
|
-
flex-direction: column;
|
|
738
|
+
border-radius: 4px;
|
|
739
|
+
overflow: hidden;
|
|
740
|
+
background-color: rgba(0, 0, 0, 1);
|
|
502
741
|
}
|
|
503
742
|
|
|
504
|
-
.vreo-infoPanel
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
743
|
+
.vreo-infoPanel {
|
|
744
|
+
position: relative;
|
|
745
|
+
}
|
|
746
|
+
|
|
747
|
+
.vreo-app .vreo-infoPanel,
|
|
748
|
+
.vreo-app[data-size="S"] .vreo-infoPanel {
|
|
749
|
+
width: 327px;
|
|
750
|
+
}
|
|
751
|
+
.vreo-app[data-size="M"][data-orientation="landscape"] .vreo-infoPanel {
|
|
752
|
+
width: 192px;
|
|
753
|
+
}
|
|
754
|
+
.vreo-app[data-size="M"][data-orientation="portrait"] .vreo-infoPanel,
|
|
755
|
+
.vreo-app[data-size="L"] .vreo-infoPanel {
|
|
756
|
+
width: 319px;
|
|
757
|
+
}
|
|
758
|
+
.vreo-app[data-size="XL"] .vreo-infoPanel {
|
|
759
|
+
width: 384px;
|
|
509
760
|
}
|
|
510
761
|
|
|
511
762
|
.vreo-infoPanel-title {
|
|
512
|
-
height: 64px;
|
|
513
763
|
width: 100%;
|
|
514
764
|
color: white;
|
|
515
765
|
display: flex;
|
|
516
766
|
align-items: center;
|
|
767
|
+
word-break: break-all;
|
|
517
768
|
}
|
|
518
769
|
|
|
519
770
|
.vreo-infoPanel-t1 {
|
|
@@ -523,6 +774,8 @@
|
|
|
523
774
|
}
|
|
524
775
|
|
|
525
776
|
.vreo-infoPanel-t2 {
|
|
777
|
+
position: absolute;
|
|
778
|
+
top: 100%;
|
|
526
779
|
font-size: 12px;
|
|
527
780
|
opacity: 0.6;
|
|
528
781
|
padding-right: 26px;
|
|
@@ -532,17 +785,13 @@
|
|
|
532
785
|
|
|
533
786
|
.vreo-infoPanelImg,
|
|
534
787
|
.vreo-infoPanelVideo {
|
|
535
|
-
|
|
536
|
-
background-size: contain;
|
|
788
|
+
position: absolute;
|
|
537
789
|
width: 100%;
|
|
538
|
-
|
|
539
|
-
|
|
790
|
+
height: 100%;
|
|
791
|
+
object-position: center center;
|
|
792
|
+
object-fit: contain;
|
|
540
793
|
}
|
|
541
794
|
|
|
542
|
-
.vreo-infoPanelVideo {
|
|
543
|
-
max-width: 412px;
|
|
544
|
-
}
|
|
545
|
-
|
|
546
795
|
.vreo-panel--hidden .vreo-panel-inner {
|
|
547
796
|
opacity: 0;
|
|
548
797
|
transition: opacity 0.45s;
|
|
@@ -555,9 +804,9 @@
|
|
|
555
804
|
width: 100%;
|
|
556
805
|
height: 100%;
|
|
557
806
|
pointer-events: none;
|
|
558
|
-
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7) 65%);
|
|
559
807
|
opacity: 0;
|
|
560
|
-
|
|
808
|
+
transform: translateY(10px);
|
|
809
|
+
transition: all .45s;
|
|
561
810
|
display: flex;
|
|
562
811
|
justify-content: center;
|
|
563
812
|
align-items: center;
|
|
@@ -565,51 +814,66 @@
|
|
|
565
814
|
|
|
566
815
|
.vreo-PopUp.vreo-PopUp-visible {
|
|
567
816
|
opacity: 1;
|
|
817
|
+
transform: translateY(0);
|
|
568
818
|
pointer-events: all;
|
|
569
819
|
}
|
|
570
820
|
|
|
571
821
|
.vreo-PopUp-inner {
|
|
572
|
-
width: 339px;
|
|
573
|
-
height: 425px;
|
|
574
822
|
position: relative;
|
|
823
|
+
display: flex;
|
|
824
|
+
flex-direction: column;
|
|
825
|
+
align-items: center;
|
|
826
|
+
width: 100%;
|
|
827
|
+
height: 100%;
|
|
575
828
|
}
|
|
576
829
|
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
}
|
|
587
|
-
|
|
588
|
-
.vreo-PopUp-inner .vreo-infoPanel {
|
|
589
|
-
background-color: initial;
|
|
590
|
-
justify-content: center;
|
|
830
|
+
.vreo-PopUp-inner .vreo-infoPanel-title {
|
|
831
|
+
position: absolute;
|
|
832
|
+
box-sizing: border-box;
|
|
833
|
+
padding-left: 16px;
|
|
834
|
+
padding-right: 16px;
|
|
835
|
+
margin-bottom: 16.5%;
|
|
836
|
+
bottom: 0;
|
|
837
|
+
z-index: 1;
|
|
838
|
+
flex-direction: column;
|
|
591
839
|
}
|
|
592
840
|
|
|
593
|
-
.vreo-PopUp-inner .vreo-infoPanel-title {
|
|
841
|
+
.vreo-PopUp-inner .vreo-infoPanel-title-shadow {
|
|
594
842
|
position: absolute;
|
|
595
|
-
bottom: 32px;
|
|
596
843
|
left: 0;
|
|
844
|
+
bottom: 0;
|
|
845
|
+
width: 100%;
|
|
846
|
+
height: 46%;
|
|
847
|
+
background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
|
|
597
848
|
z-index: 1;
|
|
598
|
-
flex-direction: column;
|
|
599
|
-
justify-content: end;
|
|
600
|
-
height: 200px;
|
|
601
|
-
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
|
|
602
849
|
}
|
|
603
850
|
|
|
604
851
|
.vreo-PopUp-inner .vreo-infoPanel-title .vreo-infoPanel-t1 {
|
|
605
852
|
padding-left: 0;
|
|
606
|
-
font-size: 20px;
|
|
607
853
|
font-weight: 600;
|
|
608
|
-
|
|
854
|
+
}
|
|
855
|
+
|
|
856
|
+
.vreo-app .vreo-PopUp-inner .vreo-infoPanel-title .vreo-infoPanel-t1,
|
|
857
|
+
.vreo-app[data-size="S"] .vreo-PopUp-inner .vreo-infoPanel-title .vreo-infoPanel-t1 {
|
|
858
|
+
font-size: 20px;
|
|
859
|
+
line-height: 28px;
|
|
860
|
+
}
|
|
861
|
+
.vreo-app[data-size="M"][data-orientation="landscape"] .vreo-PopUp-inner .vreo-infoPanel-title .vreo-infoPanel-t1 {
|
|
862
|
+
font-size: 14px;
|
|
863
|
+
line-height: 20px;
|
|
864
|
+
}
|
|
865
|
+
.vreo-app[data-size="M"][data-orientation="portrait"] .vreo-PopUp-inner .vreo-infoPanel-title .vreo-infoPanel-t1,
|
|
866
|
+
.vreo-app[data-size="L"] .vreo-PopUp-inner .vreo-infoPanel-title .vreo-infoPanel-t1 {
|
|
867
|
+
font-size: 16px;
|
|
868
|
+
line-height: 22px;
|
|
869
|
+
}
|
|
870
|
+
.vreo-app[data-size="XL"] .vreo-PopUp-inner .vreo-infoPanel-title .vreo-infoPanel-t1 {
|
|
871
|
+
font-size: 20px;
|
|
872
|
+
line-height: 28px;
|
|
609
873
|
}
|
|
610
874
|
|
|
611
875
|
.vreo-PopUp-inner .vreo-infoPanel-title .vreo-infoPanel-t2 {
|
|
612
876
|
padding: 0 0 24px 0;
|
|
613
877
|
font-size: 14px;
|
|
614
878
|
opacity: 0.85;
|
|
615
|
-
}
|
|
879
|
+
}
|