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