Skip to content

Instantly share code, notes, and snippets.

@jeena
Created September 3, 2015 18:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeena/4e4fcc513f7ca2ae4382 to your computer and use it in GitHub Desktop.
Save jeena/4e4fcc513f7ca2ae4382 to your computer and use it in GitHub Desktop.
function gross() {
document.getElementById("bild").width++;
if (document.getElementById("bild")["width"] < 100) {
setTimeout("gross()", 6);
}
}
function klein() {
document.getElementById("bild").width--;
if (document.getElementById("bild")["width"] > 30)
setTimeout("klein()", 6);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment