-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path7.html
114 lines (110 loc) · 2.95 KB
/
7.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
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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pension Laßhofer: Zimmer 7</title>
<link rel="stylesheet" href="js/pannellum/pannellum.css"/>
<script type="text/javascript" src="js/pannellum/libpannellum.js"></script>
<script type="text/javascript" src="js/pannellum/pannellum.js"></script>
<style>
html, body {
height: 100%;
padding: 0px;
margin: 0px;
}
#panorama {
width: 100%;
height: 100vh;
padding: 0px;
margin: 0px;
overflow: hidden;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
</style>
</head>
<body>
<div id="panorama"></div>
<script>
pannellum.viewer('panorama', {
"default": {
"firstScene": "zimmer",
"author": "Pension Laßhofer Zimmer 7",
"sceneFadeDuration": 1000,
"autoLoad": true,
"autoRotate": -2,
"autoRotateInactivityDelay": 5000,
"orientationOnByDefault": true
},
"scenes": {
"zimmer": {
"title": "Zimmer",
"hfov": 130,
"pitch": -10,
"yaw": 200,
"type": "equirectangular",
"panorama": "images/IMG_20200802_105527_00_422.jpg",
"hotSpots": [
{
"pitch": -5,
"yaw": 125,
"type": "scene",
"text": "Badezimmer",
"sceneId": "bathroom"
},
{
"pitch": -10,
"yaw": -30,
"type": "scene",
"text": "Balkone",
"sceneId": "balcony"
}
]
},
"bathroom": {
"title": "Badezimmer",
"hfov": 130,
"yaw": 5,
"pitch": -10,
"type": "equirectangular",
"panorama": "images/IMG_20200802_090835_00_416.jpg",
"hotSpots": [
{
"pitch": -10,
"yaw": 200.0,
"type": "scene",
"text": "Zimmer",
"sceneId": "zimmer",
"targetYaw": 200,
"targetPitch": -10
}
]
},
"balcony": {
"title": "Balkone",
"hfov": 130,
"yaw": 120,
"pitch": -10,
"type": "equirectangular",
"panorama": "images/IMG_20200802_090752_00_415.jpg",
"hotSpots": [
{
"pitch": -10,
"yaw": 300,
"type": "scene",
"text": "Zimmer",
"sceneId": "zimmer",
"targetYaw": -23,
"targetPitch": -10
}
]
}
}
});
</script>
</body>
</html>