house/main.js
2018-10-06 19:50:45 +05:00

15 lines
401 B
JavaScript

$(function() {
$('#logo').click(function() {
$('nav').toggleClass('opened')
});
$(".link").click(function (event) {
event.preventDefault();
var id = $(this).attr('href'),
top = $(id).offset().top,
time = Math.abs(window.pageYOffset - top) * 2;
if(window.innerHeight > window.innerWidth){
time = 1500;
}
$('body,html').animate({scrollTop: top}, time);
});
});