-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
changed method of fading in main info section from a javascript imple…
…mentation to using css on the index file
- Loading branch information
1 parent
d5a4aed
commit 2266263
Showing
2 changed files
with
19 additions
and
12 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,6 +23,25 @@ | |
|
||
<!-- popup-js --> | ||
<script src="https://cdn.jsdelivr.net/npm/@simondmc/[email protected]/popup.min.js"></script> | ||
|
||
<!-- Fade In main-info section --> | ||
<style> | ||
.main-info { | ||
animation: fadeInAnimation ease 4s; | ||
animation-iteration-count: 1; | ||
animation-fill-mode: forwards; | ||
} | ||
|
||
@keyframes fadeInAnimation { | ||
0% { | ||
opacity: 0; | ||
} | ||
|
||
100% { | ||
opacity: 1; | ||
} | ||
} | ||
</style> | ||
</head> | ||
|
||
<body id="body"> | ||
|
@@ -365,9 +384,6 @@ <h5 class="proj-yrs">Jun 2017 - Sep 2017</h5> | |
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script> | ||
<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script> | ||
|
||
<!-- Animate main information --> | ||
<script src="assets/js/script.js"></script> | ||
|
||
<!-- Contact Module --> | ||
<script src="assets/js/contact.js"></script> | ||
</body> | ||
|