This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function () { | |
$('#plane').hide().delay(500).fadeIn(1000); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function resetFunction(){ | |
$('html, body').animate({scrollTop:0}, 1500, 'easeOutQuint'); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
x('4'); | |
function x(i){ | |
if(typeof i === 'undefined'){ | |
console.log('i : undefined'); | |
}else{ | |
console.log('i : ' + i); | |
console.log('typeof ' + typeof i); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window.location.href.slice(window.location.href.indexOf('?') + 1).split('&'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function maxHeight(selected){ | |
var current = 0, max = 0; | |
$(selected).each(function(){ | |
current = $(this).height(); | |
max = Math.max(current, max); | |
}); | |
$(selected).height(max); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var url = window.location.href; | |
url = url.substr(url.lastIndexOf("/") + 1); | |
$("#nav").find("a[href='" + url + "']").addClass("current"); | |
if(url == ''){ | |
$("#nav").find("a[href='index.php']").addClass("current"); | |
} |
NewerOlder