JSFiddle - React, Tailwind, and code Playground

by geekambassador

HTML

<script src="http://www.greensock.com/js/src/TweenMax.min.js"></script>
<img src="http://forums.greensock.com/uploads/monthly_12_2012/post-13250-0-65437800-1355751174_thumb.png" id="shield" />

CSS

#shield{
visibility:hidden;
}

JavaScript

TweenMax.to($("#shield"), 2, {
    css: {
        autoAlpha: 1
    },
    repeat: 4,
    yoyo: true,
    repeatDelay: .3
});