2015-07-25 09:34:51 +02:00
|
|
|
/*
|
|
|
|
* Rangitaki Project
|
|
|
|
*
|
2015-03-27 07:04:23 +01:00
|
|
|
* The MIT License
|
2015-06-10 12:45:02 +02:00
|
|
|
*
|
2015-06-15 11:27:57 +02:00
|
|
|
* Copyright 2015 mmk2410.
|
2015-06-10 12:45:02 +02:00
|
|
|
*
|
2015-03-27 07:04:23 +01:00
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
2015-06-10 12:45:02 +02:00
|
|
|
*
|
2015-03-27 07:04:23 +01:00
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
2015-06-10 12:45:02 +02:00
|
|
|
*
|
2015-03-27 07:04:23 +01:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
2015-06-10 12:45:02 +02:00
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
2015-03-27 07:04:23 +01:00
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2015-07-25 09:34:51 +02:00
|
|
|
var main = function () { // main function; called below
|
2015-06-18 20:45:49 +02:00
|
|
|
|
2015-07-25 09:34:51 +02:00
|
|
|
var fabActive = false; // fab hidden at begin
|
|
|
|
$('.fabmenu').click( // action on fab click
|
|
|
|
function () {
|
|
|
|
if (!(fabActive)) { // if fab is hidden
|
|
|
|
fabFadeIn(); // fade fab in
|
|
|
|
fabActive = true; // fab = active
|
|
|
|
} else { // if fab is shown
|
|
|
|
fabFadeOut(); // fade fab out
|
|
|
|
fabActive = false; // fab = hidden
|
|
|
|
}
|
2015-06-15 17:58:15 +02:00
|
|
|
}
|
2015-07-25 09:34:51 +02:00
|
|
|
);
|
2015-06-18 20:45:49 +02:00
|
|
|
|
2015-07-25 09:34:51 +02:00
|
|
|
var navOpen = false; // nav hidden at begin
|
2015-11-22 00:59:07 +01:00
|
|
|
$('.nav-img, .overlay, .nav-close').click( // action on hamburger click
|
2015-07-25 09:34:51 +02:00
|
|
|
function () {
|
|
|
|
if (!(navOpen)) { // if nav is hidden
|
|
|
|
openNav(); // open the nav drawer
|
|
|
|
navOpen = true; // nav = open
|
|
|
|
} else { // if nav is closed
|
|
|
|
closeNav(); // close the nav drawer
|
|
|
|
navOpen = false; // nav = closed
|
|
|
|
}
|
2015-06-18 20:45:49 +02:00
|
|
|
}
|
2015-07-25 09:34:51 +02:00
|
|
|
);
|
2015-06-18 20:45:49 +02:00
|
|
|
|
2015-11-18 15:48:44 +01:00
|
|
|
/**
|
|
|
|
* Keyhandling for the navigation drawer.
|
|
|
|
* opens the drawer on 'm' (key code: 77)
|
|
|
|
* closes the drawer on 'Esc' (key code: 27)
|
|
|
|
*/
|
|
|
|
$(document).keyup(function (e) {
|
|
|
|
if (navOpen && (e.which === 27)) {
|
|
|
|
closeNav();
|
|
|
|
navOpen = false;
|
|
|
|
} else if (!(navOpen) && (e.which === 77)) {
|
|
|
|
openNav();
|
|
|
|
navOpen = true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2015-06-18 20:45:49 +02:00
|
|
|
|
2015-06-15 17:58:15 +02:00
|
|
|
};
|
2015-03-27 07:04:23 +01:00
|
|
|
|
2015-07-25 09:34:51 +02:00
|
|
|
$(document).ready(main); // run if document is loaded
|
2015-06-15 11:27:57 +02:00
|
|
|
|
2015-07-25 09:34:51 +02:00
|
|
|
function goBack() { // go back function
|
2015-06-15 11:27:57 +02:00
|
|
|
history.go(-1);
|
2015-06-15 17:58:15 +02:00
|
|
|
}
|
|
|
|
|
2015-07-25 09:34:51 +02:00
|
|
|
function fabFadeIn() { // fade fab in
|
|
|
|
$('.subfab').fadeIn(125); // fade subfabs in
|
|
|
|
$('.fab-img').fadeOut( // fade fab share image out
|
|
|
|
60, function callback() {
|
|
|
|
$('.fab-img').attr("src", "./res/img/close.svg"); // change to fab close image
|
|
|
|
}
|
|
|
|
);
|
|
|
|
$('.fab-img').fadeIn(60); // fade fab close image in
|
2015-06-15 17:58:15 +02:00
|
|
|
}
|
|
|
|
|
2015-07-25 09:34:51 +02:00
|
|
|
function fabFadeOut() { // fade fab out
|
|
|
|
$('.subfab').fadeOut(125); // fade subfabs out
|
|
|
|
$('.fab-img').fadeOut( // fade fab close image out
|
|
|
|
60, function callback() {
|
|
|
|
$('.fab-img').attr("src", "./res/img/share.svg"); // change to fab share image
|
|
|
|
}
|
|
|
|
);
|
|
|
|
$('.fab-img').fadeIn(60); // fade fab share image in
|
2015-06-15 17:58:15 +02:00
|
|
|
}
|
|
|
|
|
2015-07-25 09:34:51 +02:00
|
|
|
function openNav() { // fade navigation drawer in
|
|
|
|
$('.nav').animate({"left": "0px"}, 125); // slide in
|
|
|
|
$('.overlay').show(); // set overlay to show ...
|
|
|
|
$('.overlay').animate({"opacity": "0.4"}, 125); // ... and fade to a darker transparent color
|
2015-06-15 17:58:15 +02:00
|
|
|
}
|
|
|
|
|
2015-07-25 09:34:51 +02:00
|
|
|
function closeNav() { // fade navigation drawer out
|
2015-11-18 15:01:39 +01:00
|
|
|
$('.nav').animate({"left": "-301px"}, 125); // slide out
|
2015-07-25 09:34:51 +02:00
|
|
|
$('.overlay').animate(
|
|
|
|
{"opacity": "0.0"}, 125, function () { // fade the overlay to complete transparency
|
|
|
|
$('.overlay').hide(); // hide it then
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|