-
-
Save ckknight/8930127 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// such new game in Flappy Doge | |
// http://www.dogetek.co/game/ | |
// plz developer tools in chrome | |
// much paste in console | |
// move mouse expert | |
(function () { | |
var pos = null; | |
$(window).mousemove(function (e) { | |
e || (e = window.event); | |
pos = {top: e.clientY, left: e.clientX}; | |
}); | |
setInterval(function () { | |
if (pos) { | |
$("#bird").offset(pos); | |
} | |
window.fall_bird = 1; | |
}, 17); | |
}()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
nice! thanks for fixing that, much easier to last longer™