From 82cf0d1926f952d2f909c489f59cb8fece100d0a Mon Sep 17 00:00:00 2001 From: Gautamchandar Date: Sun, 2 Feb 2025 19:15:37 +0530 Subject: [PATCH] I have Updated Navbar I have updated navbar using Gsap see and merge now --- public/index.html | 6 ++++++ public/index.js | 13 +++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 public/index.js diff --git a/public/index.html b/public/index.html index f4d0266..ddd39da 100644 --- a/public/index.html +++ b/public/index.html @@ -350,6 +350,12 @@

Get in Touch

+ + + + + + diff --git a/public/index.js b/public/index.js new file mode 100644 index 0000000..6b33aca --- /dev/null +++ b/public/index.js @@ -0,0 +1,13 @@ +var tl = gsap.timeline() +tl.from("#nav .icon",{ + opacity:0, + delay:1, + duration:1, + y:-30 +}) +tl.from("#right a",{ + opacity:0, + duration:1, + y:-30, + stagger:0.3 +}) \ No newline at end of file