Skip to content

Instantly share code, notes, and snippets.

@glats
Created November 2, 2017 00:05
Show Gist options
  • Select an option

  • Save glats/0aa002e06dc3f6bfa309dcfde5fe8451 to your computer and use it in GitHub Desktop.

Select an option

Save glats/0aa002e06dc3f6bfa309dcfde5fe8451 to your computer and use it in GitHub Desktop.
flaot gif
function moveit() { var newTop = Math.floor(Math.random()*350); var newLeft = Math.floor(Math.random()*1024); var newDuration = Math.floor(Math.random()*5000); jQuery('#float').animate({ top: newTop, left: newLeft, }, newDuration, function() { moveit(); }); } jQuery(document).ready(function() { jQuery("#float").show(); moveit(); });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment