Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.js_8e9644cbd5699a9b2573c2d17c84d4c1.content « js « de « js « assets « _gen « resources « exampleSite - github.com/vickylaixy/hugo-theme-introduction.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 040488d188396f424051de458fe52637fa72d1b3 (plain)
1
2
$('a[href^="#"]').click(function(e){e.preventDefault();$('html, body').animate({scrollTop:$(this.hash).offset().top},500);$("#nav-menu").removeClass("is-active");return true;})
$('.card').click(function(){$($(this).attr('data-target')).addClass('is-active');$("html").addClass("modal-open");});$('.modal-close').click(function(){$($(this).attr('data-target')).removeClass('is-active');$("html").removeClass("modal-open");});$(document).keypress(function(e){if(e.which==0){$('.modal.is-active').removeClass('is-active');}});$(document).ready(function(){var time=moment().tz("America/Los_Angeles").format("h:mm A");$('#time').html(time);})