This repository was archived by the owner on Oct 8, 2021. It is now read-only.
This repository was archived by the owner on Oct 8, 2021. It is now read-only.
Opera Mobile not treated as A grade (transitions) #1883
Closed
Description
though the site indicates opera mobile gets a grade support, the code currently only considers css transition support in webkit, but not opera.
the functionality of Modernizr.prefixed()
could be leveraged to determine if you need a webkit or opera prefixed and choose the appropriate transitionend
event.
Metadata
Metadata
Assignees
Type
Projects
Milestone
Relationships
Development
No branches or pull requests
Activity
miketaylr commentedon Jun 21, 2011
Was just going to file a ticket, but I see Paul beat me to it. Are there any issues with Opera transitions, or was this code just taken from jQTouch?
paulirish commentedon Jun 21, 2011
Also since FF Mobile is A-Grade and I assume WP7 Mango will be, we might as well go for the full 4 prefixes plus standard unprefixed. Futureproof!
toddparker commentedon Jun 21, 2011
Thanks for the reminder guys. The transitions are tweaked versions of jQTouch so they only have WebKit rules right now. We plan on adding a lot more CSS support for other platforms so this is good timing. Note that Opera Mini, not Mobile, is opted out fo the Ajax navigation for a number of reasons so it will just get the build-in slide transition. We haven't dug into Opera transitions to know how good the support is on Mobile, but this is on deck for Beta 2.
toddparker commentedon Jun 21, 2011
@paulirish This code x 5 = yikes!
https://github.com/jquery/jquery-mobile/blob/master/themes/default/jquery.mobile.transitions.css
toddparker commentedon Jun 21, 2011
Oh, here it is. issue #13: Decide where to add other vendor extension properties for transitions, corners, etc
#13
Once of our first issues logged. We should try to sort this out for beta 5. Added to the milestone so we can track this actively.
miketaylr commentedon Jun 21, 2011
Looking at the code for
$.support
, this jumps out to me:"WebKitTransitionEvent" in window
. It's probably safer to do feature detection for the (webkit, moz, o, ms)transitionend
event, as that's the only event per spec (rather than the interface which just happens to be exposed globally for Webkit.)This is the approach that Modernizr takes. (I guess that means that
animationComplete
needs to be a little be smarter as well.)miketaylr commentedon Jun 30, 2011
Oh, overlooked that you've got
propExists()
, sopropExists('transitionProperty')
would be a better way to detect forcssTransitions
support (which is what Modernizr does).toddparker commentedon Sep 22, 2011
Ok, so the decision was made to wait a bit before moving to transitions because both Opera and Firefox mobile don't have a good level of support (yet). We plan on moving to transitions to support these browsers post-1.0.
toddparker commentedon Sep 27, 2011
Moving to the feature request wiki since we'll be adding this post-1.0:
https://github.com/jquery/jquery-mobile/wiki/Feature-Requests