mirror of
https://github.com/Rushilwiz/crucialnet.git
synced 2025-04-03 19:30:16 -04:00
27 lines
705 B
JavaScript
27 lines
705 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');
|
|
$('.menu').toggleClass('change');
|
|
$('nav').toggleClass('bottom-padding')
|
|
})
|
|
|
|
$.getJSON("https://api.ipify.org?format=json",
|
|
function(data) {
|
|
$(".ip").html(data.ip);
|
|
})
|
|
});
|
|
|
|
$(window).on('load', function() {
|
|
$("body").removeClass("preload");
|
|
});
|