a lot of progress
This commit is contained in:
13
js/loader.js
13
js/loader.js
@@ -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'} );
|
||||
} );
|
||||
} );
|
||||
Reference in New Issue
Block a user