-
Notifications
You must be signed in to change notification settings - Fork 193
/
index.html
68 lines (60 loc) · 3.29 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>mxplayer.js / examples</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<style>
@font-face {
font-family: 'inconsolata';
src: url('examples/files/inconsolata.woff') format('woff');
font-weight: normal;
font-style: normal;
}
* {
box-sizing: border-box;
}
html {
height: 100%;
}
body {
background-color: #ffffff;
margin: 0px;
height: 100%;
color: #555;
font-family: 'inconsolata';
font-size: 15px;
line-height: 18px;
}
</style>
</head>
<body>
<p>1、<a href="examples/pano_image.html" target="_blank">全景图片播放</a></p>
<p>2、<a href="examples/pano_image_asteroid.html" target="_blank">全景图片小行星视角初始化</a>
<p>3、<a href="examples/auto_fix_top_and_bottom.html" target="_blank">全景图片自动补天,带小行星视角初始化</a></p>
<p>4、<a href="examples/pano_image_convert_to_skybox.html" target="_blank">全景图自动补天,转为天空盒子播放</a></p>
<p>5、<a href="examples/hot_scene_switch.html" target="_blank">全景图热点切换</a></p>
<p>6、<a href="examples/mouse_event_example.html" target="_blank">热点鼠标点击事件</a></p>
<p>7、<a href="examples/pano_flybird.html" target="_blank">全景场景</a></p>
<p>8、<a href="examples/pano_object_or_scence.html" target="_blank">全景场景(模型)</a></p>
<p>9、<a href="examples/pano_object_scenne.html" target="_blank">全景场景(模型动画)</a></p>
<p>10、<a href="examples/pano_scene_earth.html" target="_blank">全景场景(模型地球)</a></p>
<p>11、<a href="examples/pano_video.html" target="_blank">全景视频</a></p>
<p>12、<a href="examples/set_icon_button_in_pano_obj.html" target="_blank">热点图标设置</a></p>
<p>13、<a href="examples/skybox_pano.html" target="_blank">天空盒子</a></p>
<p>14、<a href="examples/video_asteroid.html" target="_blank">全景视频小行星视角初始化</a></p>
<p>15、<a href="examples/vr_video_mkv.html" target="_blank">全景MKV格式视频</a></p>
<p>16、<a href="examples/vr_video.html" target="_blank">全景视频</a></p>
<p>17、<a href="examples/vr_hls_live_video.html" target="_blank">全景视频直播(HLS流)</a></p>
<p>18、<a href="examples/vr_flv_live_video.html" target="_blank">全景视频直播(FLV流)</a></p>
<p>19、<a href="examples/vr_dash_live_video.html" target="_blank">全景视频直播(Dash流)</a></p>
<p>20、<a href="examples/vr_dash_live_video.html" target="_blank">自定义流解码器</a></p>
<p>21、<a href="examples/vr_live_type_setting.html" target="_blank">强制指定流解码器</a></p>
<p>22、<a href="examples/vr_hls_video_autoplay.html" target="_blank">自动播放</a></p>
<p>23、<a href="examples/vr_hls_live_switch.html" target="_blank">切换视频直播(HLS流)</a></p>
<p>24、<a href="examples/box_video.html" target="_blank">box video(天空盒子视频)</a></p>
<hr/>
<p>1、<a href="examples/web_mix_reality.html" target="_blank">混合现实(需摄像头支持)</a></p>
<p>2、<a href="examples/web_mix_reality_birds.html" target="_blank">混合现实(需摄像头支持)</a></p>
</body>
</html>