Skip to content

Instantly share code, notes, and snippets.

@banderson623
Created February 22, 2014 21:58
Show Gist options
  • Save banderson623/9163062 to your computer and use it in GitHub Desktop.
Save banderson623/9163062 to your computer and use it in GitHub Desktop.
svg css + animation
svg {
width: 100%;
height: 100%;
g#clickable path,
g#clickable rect,
g#clickable text,
{
cursor: pointer;
}
g#clickable path,
g#clickable rect {
stroke-dasharray: 5;
fill: rgba(255,255,255,0.1);
stroke: rgba(255,255,255,0.5);
}
.hidden {
transition: all 0.5s ease-out;
cursor: default;
opacity:0.0;
}
.shown {
transition: all 0.5s ease-out;
opacity:1.0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment