Skip to content

Instantly share code, notes, and snippets.

View SzySteve's full-sized avatar

Steve Szyszkiewicz SzySteve

View GitHub Profile
@SzySteve
SzySteve / swimAway.js
Last active September 18, 2015 18:43
Swim Away!
var swimAway = function(radius) {
clones = [];
var startRunning = function() {
elements = Array.prototype.slice.call(document.querySelectorAll('a, button, input'));
makePlaceholders(elements);
document.body.onmousemove = function(e) {
var mouseX = e.pageX;
var mouseY = e.pageY;