Created
December 3, 2014 09:30
-
-
Save normansolutions/f349c9581f85351741e5 to your computer and use it in GitHub Desktop.
For use on blog post..
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--Place the below code snippet just before the closing body tag | |
in the 'YourFFInstallation\Templates\YourTemplateFolder\defaul.xsl' file.--> | |
<!--Load Velocity.js - either from CDN (as below) or your preferred location (local etc).--> | |
<script src="//cdnjs.cloudflare.com/ajax/libs/velocity/1.1.0/velocity.min.js"></script> | |
<script src="//cdnjs.cloudflare.com/ajax/libs/velocity/1.1.0/velocity.ui.min.js"></script> | |
<script> | |
$(window).load(function () { | |
var images = $(".STMmenuBar a img "); | |
images.velocity("transition.flipYIn ", { | |
stagger: 30, | |
drag: true | |
}).delay(750); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment