Created
June 20, 2012 15:08
-
-
Save smileyj68/2960375 to your computer and use it in GitHub Desktop.
Foundation 3 Orbit Call
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
<script type="text/javascript"> | |
$(window).load(function() { | |
$('#featured').orbit(); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For the rotate timer, is there a particular reason it doesn't say:
this.$rotator.css({
"transform": degreeCSS,
"-ms-transform": degreeCSS,
"-webkit-transform": degreeCSS,
"-moz-transform": degreeCSS,
"-o-transform": degreeCSS
});
Seems to cover more bases and it gets IE 9 working as well.