tolga
tolga

Reputation: 2800

Is Phonegap capable of converting all CSS3 transitions?

Is Phonegap capable of converting all CSS3 transitions or should we avoid some of them?

Upvotes: 1

Views: 184

Answers (2)

jcesarmobile
jcesarmobile

Reputation: 53301

You should check every CSS and javascript feature you want to use on http://caniuse.com/

You should check the columns iOS Safari for iOS apps and Android Browser for android apps (not chrome for android, because it usually has better support than Android Browser and the android webview is based on the Android Browser, not on chrome)

Upvotes: 1

MoLow
MoLow

Reputation: 3084

Phonegap uses a Webview to display your page.

in most devices the Webview uses webkit to render pages. So what ever works in other webkit browsers (Google chrome, for example), should work with phonegap.

read more here:

http://docs.phonegap.com/en/4.0.0/guide_hybrid_webviews_index.md.html

Upvotes: 3

Related Questions