dmitriy.icu/house/main.js
Dm1tr1y147 8b40e58208 Ha-ha
2019-05-18 17:14:59 +03:00

15 lines
401 B
JavaScript
Executable File

$(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);
});
});