This commit is contained in:
2021-04-16 01:12:41 +02:00
parent 2f2761daed
commit cad1c2f65a
8 changed files with 328 additions and 93 deletions

8
v1/js/app.js Normal file
View File

@@ -0,0 +1,8 @@
const listItems = document.querySelectorAll('li')
const header = document.querySelectorAll('header')
const Fíla = document.querySelector('.jmeno h3')
gsap.from(listItems,{ opacity: 0, stagger: 0.1, ease: 'power4.out', duration: .6, x: -30, delay: .3})
gsap.from(header, {y:-100})
gsap.fromTo(Fíla, {opacity: 0, scale: .9}, {opacity:1, scale:1, delay: 1})