Skip to content

Instantly share code, notes, and snippets.

@mcsuth
Forked from WizardNinja/rock.js
Created October 2, 2013 22:39
Show Gist options
  • Save mcsuth/6801550 to your computer and use it in GitHub Desktop.
Save mcsuth/6801550 to your computer and use it in GitHub Desktop.
// Generated by CoffeeScript 1.6.3
var userName;
var intervalSet = false;
function touchRock() {
if (userName === undefined ) {
userName = prompt("What is your name?");
alert("It's nice to meet you " + userName);
document.getElementById("rockImg").src = "rock2.jpeg";
}
if (intervalSet == false) {
setInterval(move,1000);
intervalSet = true;
}
}
function move() {
if (document.getElementById("rockImg").style.float === "right") {
document.getElementById("rockImg").style.float="left";
}
else{
document.getElementById("rockImg").style.float="right";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment