mirror of
https://github.com/Rushilwiz/crucialnet.git
synced 2025-04-03 19:30:16 -04:00
15 lines
433 B
JavaScript
15 lines
433 B
JavaScript
$(document).ready(function(){
|
|
$("#titleToQuote").click(function(){
|
|
$('html, body').animate({
|
|
scrollTop: $("#quote-section").offset().top}, 1250);
|
|
});
|
|
|
|
$('.quoteToAbout, #toAbout').click(function(){
|
|
$('html, body').animate({
|
|
scrollTop: $("#about-section").offset().top}, 1250);
|
|
});
|
|
|
|
$('.menu').click(function() {
|
|
$('ul').toggleClass('active');
|
|
})
|
|
}); |