blob: 3e10fa3ee24050a7005ab31a359f5ad59f4d25b8 (
plain)
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
|
/**
* Copyright (c) 2016 Weitian LI <liweitianux@live.com>
* MIT license
*
* JavaScript codes for the Web UI of "fg21sim"
*/
"use strict";
/**
* Scroll the page to adjust for the fixed navigation banner
*/
var scrollTarget = function (height) {
if ($(":target").length) {
var offset = $(":target").offset();
var scroll_to = offset.top - height * 1.2;
$("html, body").animate({scrollTop: scroll_to}, 100);
}
};
$(document).ready(function () {
// Scroll the page to adjust for the fixed navigation banner
$(window).on("hashchange", function () {
var nav_height = $("nav.navigation").outerHeight();
scrollTarget(nav_height);
});
});
|