Created
July 20, 2020 11:49
-
-
Save git-bhanu/7c83b73ecc5a5df3bb6616483e5a2668 to your computer and use it in GitHub Desktop.
Just a header
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
import TweenLite from 'gsap'; | |
const menu = document.querySelector('.hamberger'); | |
const nav = document.querySelector('nav'); | |
const closeMenu = document.querySelector('.menu-close'); | |
menu.addEventListener('click', () => { | |
TweenLite.to(nav, 0.3,{ left: 0 }) | |
}) | |
closeMenu.addEventListener('click', () => { | |
TweenLite.to(nav,0.3, { left:'-77%' }) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment