images, download page & rwd

This commit is contained in:
janis
2023-01-10 21:50:18 +01:00
parent f686863211
commit 7937175a99
13 changed files with 449 additions and 104 deletions

View File

View File

@@ -1,6 +1,15 @@
$(document).ready(function () {
$('#navbar').load('nav.html')
console.log("ok")
$( document ).ready( function () {
$( '#navbar' ).load( 'nav.html' );
$( '#footer' ).load( 'footer.html' );
//
$( document ).ready(function () {
$( '.button' ).mouseenter( function () {
$( this ).stop();
$( this ).animate( { 'background-color':'rgba(65, 211, 65, 1)', 'border-radius': '0px' }, 200 );
});
$( '.button' ).mouseleave( function () {
$( this ).stop();
$( this ).animate( { 'background-color':'rgba(0, 128, 0, 1)', 'border-radius': '500px' }, 200 );
});
});
});