WebisteDLH/wwwroot/js/views/view.landing.js

31 lines
459 B
JavaScript

/*
Name: View - Landing
Written by: Okler Themes - (http://www.okler.net)
Theme Version: 9.9.2
*/
(function( $ ) {
'use strict';
var timeout = false;
$('#demoFilter').keyup(function() {
if(!timeout) {
timeout = true;
$('html, body').animate({
scrollTop: $('#demos').offset().top - 90
}, 600, 'easeOutQuad', function() {
$('body').removeClass('scrolling');
timeout = false;
});
}
});
}).apply( this, [ jQuery ]);