Skip to content

Instantly share code, notes, and snippets.

@ajalab
Created April 3, 2011 13:52
Show Gist options
  • Save ajalab/900431 to your computer and use it in GitHub Desktop.
Save ajalab/900431 to your computer and use it in GitHub Desktop.
ぐらぐら
(function () {
var f = 20, b = document.body;
setInterval(function () {
b.style.marginLeft = f + 'px';
f = -f;
}, 100);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment