Skip to content

Commit

Permalink
changed method of fading in main info section from a javascript imple…
Browse files Browse the repository at this point in the history
…mentation to using css on the index file
  • Loading branch information
complxalgorithm committed Nov 5, 2023
1 parent d5a4aed commit 2266263
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 12 deletions.
9 changes: 0 additions & 9 deletions assets/js/script.js

This file was deleted.

22 changes: 19 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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">
Expand Down Expand Up @@ -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>
Expand Down

0 comments on commit 2266263

Please sign in to comment.