Adjusted fadeIn.
This commit is contained in:
parent
8cbeeb22a3
commit
cfbdf4d914
2 changed files with 7 additions and 2 deletions
|
@ -2,11 +2,13 @@
|
|||
<head>
|
||||
<!-- Javascript -->
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
|
||||
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.5/jquery-ui.min.js"></script>
|
||||
|
||||
<script src="js/fx.js"></script>
|
||||
|
||||
<!-- Stylesheet -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="css/style.css">
|
||||
|
||||
|
@ -34,7 +36,7 @@
|
|||
</div>
|
||||
|
||||
<div id="left_field">
|
||||
<div id="intro_blurb">
|
||||
<div id="intro_blurb" class="invisible">
|
||||
<p>I am a 25 years old computer engineering major student at McGill University (Montreal, CAN). I also minor
|
||||
in mathematics out of playful curiosity. Originally a physiology and mathematics double-major, bioinformatics-
|
||||
related courses sparked my interest for all things computer systems and I promptly changed faculty to
|
||||
|
@ -48,7 +50,7 @@
|
|||
</div>
|
||||
</div>
|
||||
<div id="right_field">
|
||||
<div id="callmemaybe">
|
||||
<div id="callmemaybe" class="invisible">
|
||||
<h3>Feel free to contact me over here</h3>
|
||||
<a class="social_icon" href="https://facebook.com/marc.cataford"><i class="fa fa-5x fa-facebook-official"></i></a>
|
||||
<a class="social_icon" href="https://twitter.com/_mcataford"><i class="fa fa-5x fa-twitter-square"></i></a>
|
||||
|
|
3
js/fx.js
3
js/fx.js
|
@ -6,6 +6,9 @@ $(window).ready(function() {
|
|||
$("#main_menu_skillset .menu_title").delay(1900).fadeIn(800);
|
||||
$("#main_menu_experience .menu_title").delay(2200).fadeIn(800);
|
||||
$("#main_menu_projects .menu_title").delay(2500).fadeIn(800);
|
||||
|
||||
$("#intro_blurb").delay(3300).fadeIn(1100);
|
||||
$("#callmemaybe").delay(3300).fadeIn(1100);
|
||||
|
||||
//Expanding sections.
|
||||
/*$(".section_header").click(function() {
|
||||
|
|
Loading…
Reference in a new issue