Skip to content

Instantly share code, notes, and snippets.

View snorpey's full-sized avatar

georg fischer snorpey

View GitHub Profile
@snorpey
snorpey / get-transition-duration.js
Created April 5, 2013 22:06
get css transition duration of DOM element.
// jQuery is required for this to work.
// based upon this stackoverflow answer:
// http://stackoverflow.com/a/13008597
function getTransitionDuration( element, with_delay )
{
var el = $( element );
var prefixes = 'moz webkit ms o khtml'.split( ' ' );
var result = 0;
for ( var i = 0; i < prefixes.length; i++ )
@snorpey
snorpey / build.js
Created September 2, 2012 18:01
A build script with node.js
#!/usr/bin/env node
// A BUILD SCRIPT WITH NODE.JS
// ===========================
// Most of the code is blatantly copied from this blog post by @millermedeiros:
// http://blog.millermedeiros.com/node-js-as-a-build-script
// NOTE
// This is a work in progress and I will likely add more functionality in the future.
@snorpey
snorpey / gist:2280020
Created April 2, 2012 02:13
Queue audio files.
var jq = document.createElement('script');
jq.src = 'http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js';
jq.onload = snorpey_getPaths;
document.body.appendChild(jq);
var snorpey_paths = [];
var snorpey_index = 0;
var snorpey_player;
function snorpey_getPaths()