progress on pages & optimisation of js
This commit is contained in:
@@ -72,6 +72,13 @@ html, body {
|
|||||||
color: white;
|
color: white;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
border-radius: 50px;
|
border-radius: 50px;
|
||||||
|
transition: 1.5s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button:hover {
|
||||||
|
border-radius: 5px;
|
||||||
|
background-color: rgb(0, 0, 31);
|
||||||
|
transition: 0.2s;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -165,4 +172,4 @@ html, body {
|
|||||||
height: 40vh;
|
height: 40vh;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -18,13 +18,15 @@
|
|||||||
<h2 class="biggest text-centered light-color">Examples</h2>
|
<h2 class="biggest text-centered light-color">Examples</h2>
|
||||||
</div>
|
</div>
|
||||||
<h4>Here's a list of the websites I have created so far.</h4>
|
<h4>Here's a list of the websites I have created so far.</h4>
|
||||||
|
<p class="lightly-written" style="margin-top: 0.3%;">Links will open in new tabs</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="https://historyproject.janishutz.com">historyproject.janishutz.com</a></li>
|
<li><a href="https://historyproject.janishutz.com" target="_blank">historyproject.janishutz.com</a></li>
|
||||||
<li><a href="https://booking.languageschoolhossegor.com">booking.languageschoolhossegor.com</a></li>
|
<li><a href="https://booking.languageschoolhossegor.com" target="_blank">booking.languageschoolhossegor.com</a></li>
|
||||||
<li><a href="https://janishutz.com">janishutz.com</a></li>
|
<li><a href="https://janishutz.com" target="_blank">janishutz.com</a></li>
|
||||||
<li><a href="https://development.janishutz.com">development.janishutz.com</a></li>
|
<li><a href="https://development.janishutz.com" target="_blank">development.janishutz.com</a></li>
|
||||||
<li><a href="https://pcbuilding.janishutz.com">pcbuilding.janishutz.com</a></li>
|
<li><a href="https://pcbuilding.janishutz.com" target="_blank">pcbuilding.janishutz.com</a></li>
|
||||||
<li><a href="https://impress.js.org">impress.js.org</a></li>
|
<li><a href="https://myevent.janishutz.com" target="_blank">myevent.janishutz.com</a></li>
|
||||||
|
<li><a href="https://impress.js.org" target="_blank">impress.js.org</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div id="footer"></div>
|
<div id="footer"></div>
|
||||||
|
|||||||
@@ -1,11 +1,18 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>Home :: Development - janishutz.com</title>
|
<meta http-equiv="X-UA-Compatible" content="IE=8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||||
|
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<link rel="stylesheet" href="/css/style.css">
|
<link rel="stylesheet" href="/css/style.css">
|
||||||
<script defer src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
|
<script defer src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
|
||||||
<script defer="" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.3/jquery-ui.min.js" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
|
<script defer="" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.3/jquery-ui.min.js" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
|
||||||
<script defer src="/js/loader.js"></script>
|
<script defer src="/js/loader.js"></script>
|
||||||
|
|
||||||
|
<meta name="keywords" content="">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<title>Home :: Development - janishutz.com</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="nav"></div>
|
<div id="nav"></div>
|
||||||
|
|||||||
11
js/loader.js
11
js/loader.js
@@ -1,13 +1,4 @@
|
|||||||
$(document).ready( function () {
|
$( document ).ready( function () {
|
||||||
$( '#nav' ).load( '/modules/nav.html' );
|
$( '#nav' ).load( '/modules/nav.html' );
|
||||||
$( '#footer' ).load( '/modules/footer.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