<div class="transitions">
<button type="button" class="button alert">Click Me</button>
<img id="boom" data-animation="scale-in-up" class="slow ease" src="http://svgshare.com/i/J8.svg" alt="Boom">
</div>
* {
background-color: #000;
}
.transitions {
text-align: center;
width: 100%;
height: 100%;
}
.button {
margin: 20px 0 60px;
}
#boom {
display: block;
width: 60%;
max-width: 960px;
margin: 0 auto;
}
$(function() {
$(".button").click(function() {
var $animation = $("#boom").data("animation");
MotionUI.animateIn($("#boom"), $animation);
});
});