first commit

This commit is contained in:
CHIEFSOFT\ameye
2023-11-30 13:20:54 -05:00
commit e9e5c0546c
5833 changed files with 1801865 additions and 0 deletions
@@ -0,0 +1,29 @@
/**
* Scroll To Top
*/
( function( $ ) {
$( document ).ready( function() {
$( window ).scroll( function() {
var offset = $( 'body' ).innerHeight() * 0.1;
if ( $( this ).scrollTop() > offset ) {
$( '.pk-scroll-to-top' ).addClass( 'pk-active' );
} else {
$( '.pk-scroll-to-top' ).removeClass( 'pk-active' );
}
} );
$( '.pk-scroll-to-top' ).on( 'click', function() {
$( 'body, html' ).animate( {
scrollTop: 0
}, 400 );
return false;
} );
} );
} )( jQuery );