-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
179 lines (157 loc) · 4.49 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
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Conde de la Vega 304 | Grupo Chacarilla Sur</title>
<meta name="description" content="Conde de la Vega Calle Conde de la Vega 304" />
<meta name="keywords" content="Conde de la Vega 304,Virtual tour" />
<meta name="medium" content="mult" />
<meta name="video_height" content="480"/>
<meta name="video_width" content="640"/>
<link rel="image_src" href="./thumbnail.png" />
<meta name="author" content="Grupo Chacarilla Sur" />
<meta property="og:title" content="Gálvez Barrenechea 934 | Grupo Chacarilla Sur" />
<meta property="og:description" content="Gálvez Barrenechea 934 Av. Gálvez Barrenechea" />
<meta property="og:type" content="website" />
<meta property="og:image" content="./thumbnail.png" />
<meta name="viewport" content="target-densitydpi=device-dpi, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui, viewport-fit=cover"/>
<meta name="apple-mobile-web-app-capable" content="yes"/>
<meta name="apple-mobile-web-app-status-bar-style" content="default">
<style>
@-ms-viewport {
width: device-width;
}
@media only screen and (min-device-width:800px) {
html {
overflow: hidden;
}
}
html {
height: 100%;
}
body {
height: 100%;
overflow: hidden;
margin: 0;
padding: 0;
font-family: Arial, Helvetica, sans-serif;
font-size: 16px;
color: #FFFFFF;
background-color: #eee;
}
.social-media {
position: absolute;
top: 6em;
right: 1em;
width: 50px;
display: flex;
flex-direction: column;
justify-content: flex-start;
background: rgba(136, 13, 83, 0.8);
border-radius: 8px;
z-index:10000000000;
}
.social-media .item {
position: relative;
width: 35px;
height: 35px;
margin: 10px auto 0;
border-radius: 50%;
}
.social-media .item:last-child {
margin-bottom: 10px;
}
.item:hover {
-webkit-box-shadow: 0px 0px 25px 4px rgba(255, 255, 255, 0.5);
-moz-box-shadow: 0px 0px 25px 4px rgba(255, 255, 255, 10.5);
box-shadow: 0px 0px 25px 4px rgba(255, 255, 255, 0.5);
background-color: rgba(255, 255, 255, 0.25);
}
.item a {
display: block;
width: 100%;
height: 100%;
background-size: contain;
background-repeat: no-repeat;
}
.item a[social="fb"] {
background-image: url('./icons/fb.png');
}
.item a[social="twitter"] {
background-image: url('./icons/twitter.png');
}
.item a[social="linkedin"] {
background-image: url('./icons/linkedin.png');
}
.item a[social="email"] {
background-image: url('./icons/email.png');
}
.logo
{
position: absolute;
width:120px;
height:120px;
bottom: 64px;
left:10px;
z-index: 100000;
}
.logo a
{
display: block;
width: 100%;
height:100%;
background-image: url('./skin/logo.png');
background-size: contain;
}
@media only screen and (min-width : 320px) {
.social-media
{
right:0.5em;
top:5.5em;
}
}
</style>
</head>
<body>
<script src="tour.js"></script>
<div id="pano" style="width:100%;height:100%;">
<noscript>
<table style="width:100%;height:100%;">
<tr style="vertical-align:middle;">
<td>
<div style="text-align:center;">ERROR:<br /><br />Javascript not activated<br /><br /></div>
</td>
</tr>
</table>
</noscript>
<script>
embedpano({ swf: "tour.swf", xml: "tour.xml", target: "pano", html5: "auto", mobilescale: 1.0, passQueryParameters: true });
</script>
</div>
<div class="custom">
<div class="social-media">
<div class="item"><a href="https://www.facebook.com/sharer/sharer.php?u=https://www.grupochacarillasur.com/https://www.grupochacarillasur.com/condedelavega304" social="fb" target="_blank"> </a> </div>
<div class="item"><a href="https://twitter.com/gchacarillasur" social="twitter" target="_blank"> </a></div>
<div class="item"><a href="https://www.linkedin.com/company/gcharillasur" social="linkedin" target="_blank"> </a></div>
<div class="item"><a href="mailto:ventas@grupochacarillasur.com?subject=CONSULTA DE PROYECTO" social="email" target="_blank"> </a></div>
</div>
</div>
<script>
function EnterVR()
{
document.querySelector('.social-media').style.display = 'none';
}
function ExitVR()
{
document.querySelector('.social-media').style.display = 'flex';
}
window.addEventListener('fullscreenchange', function()
{
if(document.fullscreenElement)
{
document.fullscreenElement.appendChild(document.querySelector('.custom'));
}
})
</script>
</body>
</html>