images, download page & rwd
This commit is contained in:
0
website/js/docs/loadDocPage.js
Normal file
0
website/js/docs/loadDocPage.js
Normal 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 );
|
||||
});
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user