initial setup of website

This commit is contained in:
2023-03-10 18:38:27 +01:00
parent 0d4191eec3
commit 5ca3e383a6
26 changed files with 387 additions and 30 deletions

View File

@@ -1,3 +1,4 @@
/* eslint-disable no-undef */
/*
* myevent - index.js
*
@@ -9,4 +10,14 @@
$( document ).ready( function () {
$( '#nav' ).load( '/nav.html' );
$( '.button' ).mouseenter( function () {
$( this ).stop();
$( this ).animate( { 'border-radius': '5px', 'background-color': 'rgb(60, 85, 140)' }, 200 );
} );
$( '.button' ).mouseleave( function () {
$( this ).stop();
$( this ).animate( { 'border-radius': '30px', 'background-color': 'rgb(24, 43, 61)' }, 400 );
} );
} );