Skip to content

Instantly share code, notes, and snippets.

View bradleybossard's full-sized avatar

Bradley Bossard bradleybossard

View GitHub Profile
@bradleybossard
bradleybossard / dabblet.css
Created November 27, 2013 23:26 — forked from anonymous/dabblet.css
Attempt for Chrome-style progress-indicator with SVG and CSS animations
/**
* Attempt for Chrome-style progress-indicator with SVG and CSS animations
*/
@keyframes spin {
to {
stroke-dashoffset: -264;
}
}
@bradleybossard
bradleybossard / dabblet.css
Created November 26, 2013 01:13 — forked from anonymous/dabblet.css
Animate a Hilbert Curve
/**
* Animate a Hilbert Curve
*/
@keyframes spin {
0% {
stroke: #00aeef
}
37.5% {
stroke: #ed1c24;
@bradleybossard
bradleybossard / dabblet.css
Created November 26, 2013 01:13 — forked from anonymous/dabblet.css
Attempt for Chrome-style progress-indicator with SVG and CSS animations
/**
* Attempt for Chrome-style progress-indicator with SVG and CSS animations
*/
@keyframes spin {
to {
stroke-dashoffset: -264;
}
}