-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (36 loc) · 1.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ripon's Virtual Tour</title>
<link href="style.css?v=4" rel="stylesheet" type="text/css" />
<script async="async" src="https://apply.ripon.edu/ping"></script>
</head>
<body>
<div class="container">
<div class="content">
<img src="logo.png" class="logo">
<h1>Welcome to your virtual experience!</h1>
<p>We're currently working on an all-new tour experience - please come back to visit us soon!</p>
<!--
<a href="https://www.youvisit.com/#/vte/?data-platform=v&data-inst=62894&data-loc=143066&" class="btn">Start with audio</a>
<a href="https://www.youvisit.com/#/vte/?data-platform=v&data-inst=62894&data-loc=143066&data-autoplay=0" class="btn">Start without audio</a>-->
</div>
</div>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script>
var set_layout = function() {
$('.container').height( $(window).innerHeight() );
var content = $('.content');
var content_top = -( content.height() / 2 );
$('.content').css( 'margin-top', content_top );
}
$(document).ready(function(){
set_layout();
$(window).on( 'resize', set_layout );
});
</script>
<script async="async" defer="defer" src="https://www.youvisit.com/tour/Embed/js3"></script>
</body>
</html>