Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
KimTeddy committed Dec 27, 2024
1 parent 1198e3a commit 9b54df6
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,6 @@
fetch('header.html').then(res => res.text()).then(data => document.getElementById('header').innerHTML = data);
</script>
</div>
<script>
// Wait for the animation to finish, then show the content
setTimeout(() => {
document.querySelector('.content').classList.add('show');
}, 2500); // 3s fadeOut starts after 1.5s slideIn
</script>


<!-- Include navigation -->
Expand All @@ -84,6 +78,13 @@ <h3>명지대학교 로봇, 임베디드 중앙동아리</h3>
<h4><i>Since 1993</i></h4>
</div>
<!-- About content will be dynamically included -->
<script>
// Wait for the animation to finish, then show the content
setTimeout(() => {
document.querySelector('.content').classList.add('show');
}, 2500); // 3s fadeOut starts after 1.5s slideIn
</script>

<script>
fetch('about.html')
.then(res => res.text())
Expand Down

0 comments on commit 9b54df6

Please sign in to comment.