-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (73 loc) · 3 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>isoPlot</title>
<link href="https://fonts.googleapis.com/css?family=Dosis|Kavoon" rel="stylesheet">
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
<script src="http://code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
<script src="javascripts/jquery.ba-throttle-debounce.min.js" type="text/javascript"></script>
<link rel='stylesheet' type='text/css' href='stylesheets/main.css'/>
<link rel="shortcut icon" href="favicon.ico">
</head>
<body style='min-width:1000px'>
<header class="page-header" role="banner" style="min-width:1000px">
<div class="inner clearfix">
<h1 class="site-logo">
<a href="http://isoplot.iis.sinica.edu.tw/"><img class='logo' src="images/logo.png">
</a>
</h1>
<nav class="primary-nav" role="navigation">
<ul>
<li><a
href="http://isoplot.iis.sinica.edu.tw/">Home</a></li>
<li><a
href="http://isoplot.iis.sinica.edu.tw/info.html">Info</a></li>
<li><a
href="http://isoplot.iis.sinica.edu.tw/about.html">About us</a></li>
</ul>
</nav>
</div>
</header>
<div style="width:75%;height: 100%;margin: 111px auto;">
<iframe id="myIframe" sandbox="allow-modals allow-popups allow-scripts allow-forms allow-same-origin" src="main.html" marginwidth="0" marginheight="0"
style="width:880px;height:800px;" scrolling="no"></iframe>
</div>
<footer>
<p>© 2017 BITS, BIO-IT Station</p>
<p>Contact information: <a href="mailto:nim_1111@iis.sinica.edu.tw">
nim_1111@iis.sinica.edu.tw</a>.</p>
</footer>
</body>
<script type="text/javascript">
$(function () {
$('.page-header').each(function () {
var $window = $(window),
$header = $(this),
$headerClone = $header.contents().clone(),
$headerCloneContainer = $('<div class="page-header-clone"></div>'),
threshold = $header.offset().top + $header.outerHeight();
$headerCloneContainer.append($headerClone);
$headerCloneContainer.appendTo('body');
$window.on('scroll', $.throttle(1000 / 15, function () {
if ($window.scrollTop() > threshold) {
$headerCloneContainer.addClass('visible');
$('.logo').css({"height":"100%"});
} else {
$headerCloneContainer.removeClass('visible');
}
}));
$window.trigger('scroll');
});
});
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new
Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-88670245-1', 'auto');
ga('send', 'pageview');
</script>
</html>