-
Notifications
You must be signed in to change notification settings - Fork 1
/
footer.html
92 lines (80 loc) · 2.85 KB
/
footer.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
<html>
</div>
<footer>
<div id="logorow">
<div class="footerlogo">
<a href="http://wustl.edu/">
<img src="http://2015.igem.org/wiki/images/4/44/Washington_University_in_St._Louis_logo_gs.png" class="img-responsive footerimg on">
<img src="http://2015.igem.org/wiki/images/f/fb/Washington_University_in_St._Louis_logo.png" class="img-responsive footerimg off">
</a>
</div>
<div class="footerlogo">
<a href="https://icares.wustl.edu/Pages/Home.aspx">
<img src="http://2015.igem.org/wiki/images/4/48/ICARES_logo_gs.png" class="img-responsive footerimg on">
<img src="http://2015.igem.org/wiki/images/6/6f/ICARES_logo.png" class="img-responsive footerimg off">
</a>
</div>
<div class="footerlogo">
<a href="http://artsci.wustl.edu/">
<img src="http://2015.igem.org/wiki/images/d/d9/WashU_Arts_Logo_gs.png" class="img-responsive footerimg on">
<img src="http://2015.igem.org/wiki/images/e/e2/WashU_Arts_Logo.jpg" class="img-responsive footerimg off">
</a>
</div>
<div class="footerlogo">
<a href="http://www.snapgene.com/">
<img src="http://2015.igem.org/wiki/images/1/1f/SnapGene_Logo_gs.png" class="img-responsive footerimg on">
<img src="http://2015.igem.org/wiki/images/a/a7/SnapGene_Logo.png" class="img-responsive footerimg off">
</a>
</div>
<div class="footerlogo">
<a href="http://www.monsanto.com/pages/default.aspx">
<img src="http://2015.igem.org/wiki/images/f/f5/Monsanto_logo_gs.png" class="img-responsive footerimg on">
<img src="http://2015.igem.org/wiki/images/7/78/Monsanto_logo.png" class="img-responsive footerimg off">
</a>
</div>
<div class="footerlogo">
<a href="https://www.sigmaaldrich.com/">
<img src="http://2015.igem.org/wiki/images/0/05/Sigma-Aldrich_Logo_gs.jpg" class="img-responsive footerimg on">
<img src="http://2015.igem.org/wiki/images/8/8a/Sigma-Aldrich_Logo.jpg" class="img-responsive footerimg off">
</a>
</div>
<div id="yhteystiedot">
<p>
This wiki is designed and constructed by Washington University in St. Louis.<br>
</p>
</div>
</footer>
</body>
<script type="text/javascript">
$(document).ready(function(){
$('a[href^="#"]').on('click',function (e) {
e.preventDefault();
var target = this.hash,
$target = $(target);
$('html, body').stop().animate({
'scrollTop': $target.offset().top
}, 900, 'swing', function () {
window.location.hash = target;
});
});
});
</script>
<script type="text/javascript">
if($('.extrabar').affix != undefined){
$('.extrabar').affix({
offset: {
top: $('.splash').height() * 1.115
}
}
)};
</script>
<script type="text/javascript">
if($('.update').waypoint != undefined){
$('.update').waypoint(function(direction) {
var selector = "#" + ($(this)[0].classList[1]) + "-submenu";
$('.extrabar a.active').removeClass("active");
$(selector).addClass("active");
}
)};
</script>
</html>