Skip to content

Instantly share code, notes, and snippets.

@Pross
Created July 21, 2014 23:40
Show Gist options
  • Save Pross/91ef182462ba9822f7d3 to your computer and use it in GitHub Desktop.
Save Pross/91ef182462ba9822f7d3 to your computer and use it in GitHub Desktop.
Disable animation on mobiles.
<script>
jQuery( document ).ready(function() {
var width = jQuery(window).width()
if( width < 480 )
jQuery('div').removeClass('pl-animation')
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment