Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

transitions are not properly converted #67

Open
bkuhl opened this issue May 13, 2012 · 3 comments
Open

transitions are not properly converted #67

bkuhl opened this issue May 13, 2012 · 3 comments

Comments

@bkuhl
Copy link

bkuhl commented May 13, 2012

transition: all 0.3s ease-out;

is not properly converted to

-moz-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
-webkit-transition: all 0.3s ease-out;
-ms-transition: all 0.3s ease-out;

I ran a test here: http://jsfiddle.net/7RLvx/

@LeaVerou
Copy link
Owner

Sigh. If only I had a nickel for the number of times this "bug" has been reported.

-prefix-free runs on the client-side, so there's no need to add all prefixes. It can detect whether a prefix is needed and which one, and act accordingly.

@bkuhl
Copy link
Author

bkuhl commented May 13, 2012

I did a search for "transition" in issues and didn't find it... In the
fiddle I posted, there's no transition there at all. This also happens
with a local .htm file on my computer. There's no transition taking place.

On Sun, May 13, 2012 at 2:47 PM, Lea Verou <
reply@reply.github.com

wrote:

Sigh. If only I had a nickel for the number of times this "bug" has been
reported.

-prefix-free runs on the client-side, so there's no need to add all
prefixes. It can detect whether a prefix is needed and which one, and act
accordingly.


Reply to this email directly or view it on GitHub:
#67 (comment)

Ben Kuhl

@LeaVerou LeaVerou reopened this May 13, 2012
@LeaVerou
Copy link
Owner

Ah, I see. It looks like it’s not working when it runs onload, if I change that to "no wrap (body)" or "no wrap (head)" it works fine. In reality, you’d include the script somewhere, not copy paste it in an event handler, so I don't see how that’s a problem in real code. Though it’s quite interesting to look into why it’s not working there at some point.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants