Photo: Fix scroll and reveal

This commit is contained in:
2020-04-04 13:02:51 +02:00
parent b80941a0df
commit 945b162318

View File

@@ -1,8 +1,7 @@
import anime from 'animejs'
import ScrollOut from 'scroll-out'
import imagesLoaded from 'imagesloaded'
import { parallaxAnime } from 'utils/functions'
// import { animDuration, animDurationLong } from 'utils/store'
import { throttle, parallaxAnime } from 'utils/functions'
/*
@@ -12,36 +11,37 @@ export const animateIn = scope => {
// Title (reveal on scroll)
const titleReveal = ScrollOut({
once: true,
targets: scope,
targets: scope.querySelector('h2'),
onShown (el) {
// Title reveal
anime({
targets: el.querySelectorAll('h2 span'),
targets: el.querySelectorAll('span'),
translateY: ['100%', 0],
easing: 'easeOutQuart',
duration: 1000,
delay: anime.stagger(120),
easing: 'easeOutQuart'
delay: anime.stagger(120)
})
}
})
// Photo (reveal on scroll)
const photoReveal = ScrollOut({
once: true,
targets: scope.querySelector('.photo__image'),
onShown (el) {
// Load the photo then reveal it
imagesLoaded(el, instance => {
imagesLoaded(scope.querySelector('.photo__image'), instance => {
const image = instance.elements[0]
const photoReveal = ScrollOut({
once: true,
targets: image,
onShown (el) {
// Load the photo then reveal it
anime({
targets: el.querySelector('img'),
scale: [1.12, 1],
opacity: [0, 1],
easing: 'easeOutQuart',
duration: 2000,
delay: 50,
easing: 'easeOutQuart'
delay: 50
})
})
}
}
})
})
// Number parallax on scroll
@@ -58,11 +58,12 @@ export const animateIn = scope => {
easing: 'linear',
autoplay: false
})
window.addEventListener('scroll', () => parallaxAnime(el, translate))
window.addEventListener('scroll', throttle(() => parallaxAnime(el, translate), 50))
setTimeout(() => parallaxAnime(el, translate), 50)
console.log('show')
},
onHidden () {
window.removeEventListener('scroll', parallaxAnime)
if (parallaxAnime) window.removeEventListener('scroll', parallaxAnime)
}
})
}