I'm trying to use CSS Transitions with a :before
selector and currently the only browser that supports this is Firefox. I can create a jQuery fallback with no problem, but I'm not sure how to do feature detection with a pseudo-element like that.
Here's a JSBin which shows the HTML and CSS that I'm working with.
(... and here's a similar SO question, but about using regular elements.)
Update: wow, even the platform preview of IE10 has support for this, what's up with that webkit?!
(Edit: solutions moved to answer below)
Thanks to @Asad for digging up some handy code, I was able to come up with a nice solution here's the jQuery version:
Here's a version that doesn't use jQuery:
Here's all that code in a gist on github, if anyone wants to fork and improve it.