Menu for PHONE
//Menu for PHONE
$(function() {
menu = $('nav ul');
$('#openup').on('click', function(e) {
e.preventDefault(); menu.slideToggle();
});
$(window).resize(function(){
var w = $(this).width(); if(w > 480 && menu.is(':hidden')) {
menu.removeAttr('style');
}
});
$('nav li').on('click', function(e) {
var w = $(window).width(); if(w < 480 ) {
menu.slideToggle();
}
});
$('.cf').height($(menu).height());
});
Smooth Scrolling
//Smooth Scrolling
$('.cf a').on('click', function(event){
if(this. hash !== ''){
event.preventDefault();
const hash = this.hash;
$('html, body').animate(
{
scrollTop: $(hash).offset().top
},
800,
function(){
window.location.hash = hash;
}
);
}
});