this.timeline = new TimelineMax({ paused: true });
this.timeline.fromTo('.blurp--bottom', .6, {
y: 40,
scale: 0.5
}, {
y: 0,
scale: 1,
ease: Power3.easeOut,
force3D: true
});
this.timeline.fromTo($('.btn__arrow--top'), .4, {
y: 15,
opacity: 0
}, {
y: 0,
scale: 1,
opacity: 1,
ease: Back.easeOut
}, '-=0.1');
this.timeline.fromTo($('.btn__arrow--bottom'),.4, {
y: 15,
opacity: 0
}, {
y: 0,
scale: 1,
opacity: 1,
ease: Back.easeOut
}, '-=0.25');