Depuración de tamplete
This commit is contained in:
30
resources/public/js/views/view.landing.js
Normal file
30
resources/public/js/views/view.landing.js
Normal file
@ -0,0 +1,30 @@
|
||||
/*
|
||||
Name: View - Landing
|
||||
Written by: Okler Themes - (http://www.okler.net)
|
||||
Theme Version: 12.1.0
|
||||
*/
|
||||
|
||||
(($ => {
|
||||
let timeout = false;
|
||||
|
||||
$('#demoFilter').keyup(() => {
|
||||
|
||||
if(!timeout) {
|
||||
|
||||
timeout = true;
|
||||
|
||||
$('html, body').animate({
|
||||
scrollTop: $('#demos').offset().top - 90
|
||||
}, 600, 'easeOutQuad', () => {
|
||||
$('body').removeClass('scrolling');
|
||||
timeout = false;
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
$('.custom-banner-content-item-1').on('click', () => {
|
||||
$('.style-switcher-open-loader').trigger('click');
|
||||
});
|
||||
})).apply( this, [ jQuery ]);
|
Reference in New Issue
Block a user