link to myevent website & upgraded menu
This commit is contained in:
@@ -1,24 +1,8 @@
|
||||
$(document).ready(function() {
|
||||
$('#ContentToInclude').load('/menu.html');
|
||||
$('#Footer').load('/footer.html');
|
||||
$( '.linkbutton').mouseenter(function() {
|
||||
$( this ).stop();
|
||||
$( this ).animate( { 'border-radius': '0px', 'background-color': 'darkblue' }, 200 );
|
||||
});
|
||||
$( '.linkbutton').mouseleave(function() {
|
||||
$( this ).stop();
|
||||
$( this ).animate( { 'border-radius': '20px', 'background-color': 'rgba(0,0,0,0)' }, 200 );
|
||||
});
|
||||
$( '.textlink' ).mouseenter(function() {
|
||||
$( this ).stop();
|
||||
$(this ).animate( { 'color': 'darkblue', 'font-size': '120%' }, 200 );
|
||||
});
|
||||
$( '.textlink' ).mouseleave(function() {
|
||||
$( this ).stop();
|
||||
$( this ).animate( { 'color': 'black', 'font-size': '100%' }, 200);
|
||||
});
|
||||
$( document ).ready( function() {
|
||||
$( '#ContentToInclude' ).load( '/menu.html' );
|
||||
$( '#Footer' ).load('/footer.html');
|
||||
setTimeout( highlightLocation, 200 );
|
||||
});
|
||||
} );
|
||||
|
||||
function highlightLocation () {
|
||||
let pagename = $(location).attr( 'pathname' );
|
||||
|
||||
Reference in New Issue
Block a user