-
Notifications
You must be signed in to change notification settings - Fork 167
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #341 from Code-sHimanshu/Himanshu
Scroll-Animation added
- Loading branch information
Showing
1 changed file
with
12 additions
and
3 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -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> | ||
|
@@ -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> | ||
|
@@ -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> | ||
|
@@ -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> | ||
|