You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Multiple fade in elements causing tween override warning on console
How can I resolve this issue?
Below is my function
let controllerFade = new ScrollMagic.Controller();
$('.fade-in').each(function() {
let tween = new TweenMax.from($(this), 0.7, {autoAlpha: 0, y: '+=40', x: '0', ease:Linear.easeNone});
// build a scene
let scene = new ScrollMagic.Scene({
// duration: 400,
triggerElement: this,
})
.setTween(tween)
.addTo(controllerFade);
});
The text was updated successfully, but these errors were encountered:
Multiple fade in elements causing tween override warning on console
How can I resolve this issue?
Below is my function
let controllerFade = new ScrollMagic.Controller();
The text was updated successfully, but these errors were encountered: