action: function(selector) {
TweenMax.from(selector, 0.3, { x:100, opacity: 0 });
}
action: function(selector) {
$(selector)
.velocity({ x: "+=200", y: "25%" })
.velocity({ height: 150, width: 150 })
.velocity({ rotateZ: 360, scale: 1.5 })
.velocity("reverse", { delay: 550 });
}
action: function(selector) {
$(selector).addClass('animated fadeInLeft');
}
action: function(selector) {
anime({
targets: selector,
translateX: 250,
scale: 2,
rotate: '1turn'
});
}