Skip to content

Commit

Permalink
Merge pull request #341 from Code-sHimanshu/Himanshu
Browse files Browse the repository at this point in the history
Scroll-Animation added
  • Loading branch information
avinash201199 authored Oct 21, 2024
2 parents 9ca8327 + 9df3824 commit d0ae877
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Baloo+Bhai+2&family=Montserrat:wght@500&display=swap"
rel="stylesheet">
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">

<!-- jquery CDN -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script>
Expand Down Expand Up @@ -56,7 +57,7 @@ <h4 id="confirm-msg">Are you sure you want to delete this task?</h4>
<a href="index.html"><img src="assets\images\logo.png" alt="logo" width="120px"></a>

<a href="#">
<div class="header"><b>
<div class="header" data-aos="zoom-in"><b>
<h1>To-Do List</h1>
</b></div>
</a>
Expand Down Expand Up @@ -84,8 +85,12 @@ <h1>To-Do List</h1>
</div>

<!-- Clock Modification -->
<div class="Clock">
<div id="time"></div>
<div class="Clock" data-aos="flip-left"
data-aos-easing="ease-out-cubic"
data-aos-duration="2000">
<div id="time" data-aos="flip-left"
data-aos-easing="ease-out-cubic"
data-aos-duration="2000"></div>
<div class="week">
<div id="day"></div>
<div id="date"></div>
Expand Down Expand Up @@ -285,6 +290,10 @@ <h3 class="footerelements">Made with <i class="fas fa-heart fa-heart-custom"></i
});
}
</script>
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script>
AOS.init();
</script>


</body>
Expand Down

0 comments on commit d0ae877

Please sign in to comment.