a lot of progress

This commit is contained in:
janis
2023-01-22 17:44:42 +01:00
parent 237a20c8cc
commit e65b58e5bb
22 changed files with 572 additions and 9 deletions

View File

@@ -0,0 +1,13 @@
$(document).ready( function () {
$( '#nav' ).load( '/modules/nav.html' );
$( '#footer' ).load( '/modules/footer.html' );
$( '.button' ).mouseenter ( function () {
$( this ).stop();
$( this ).animate( { 'border-radius': '0'} );
} );
$( '.button' ).mouseleave ( function () {
$( this ).stop();
$( this ).animate( { 'border-radius': '50px'} );
} );
} );