Skip to content

Instantly share code, notes, and snippets.

@zolitch
zolitch / dabblet.css
Created February 20, 2012 09:56 — forked from davetayls/dabblet.css
Move in a circle without wrapper elements
/**
* Move in a circle without wrapper elements
* Idea by Aryeh Gregor, simplified by Lea Verou
*/
@keyframes rot {
from {
transform: rotate(0deg)
translate(-150px)
rotate(0deg);
@zolitch
zolitch / debug.js
Created February 20, 2012 09:55 — forked from davetayls/debug.js
Basic debug module
/**
* Basic debug AMD module
* usage: debug.log('inside coolFunc',this,arguments);
*/
/*jslint browser: true, vars: true, white: true, forin: true */
/*global define, require */
(function(){
'use strict';
var debug = {