mirror of
https://github.com/Rushilwiz/HiLo.git
synced 2025-04-09 14:40:16 -04:00
13 lines
346 B
JavaScript
Executable File
13 lines
346 B
JavaScript
Executable File
$(document).ready(function(){
|
|
$("#arrow").click(function(){
|
|
$('html, body').animate({
|
|
scrollTop: $("#info-section").offset().top}, 1250);
|
|
});
|
|
|
|
$(".jumbotron").css({ height: $(window).height() + "px" });
|
|
|
|
$(window).on("resize", function() {
|
|
$(".jumbotron").css({ height: $(window).height() + "px" });
|
|
});
|
|
});
|