Is there a way in jQuery to animate the css3 border-radius property available in webkit and mozilla browsers?
I haven't found a plugin that will do it.
-webkit-border-radius
-moz-border-radius
Thanks.
|
Is there a way in jQuery to animate the css3 border-radius property available in webkit and mozilla browsers? I haven't found a plugin that will do it. -webkit-border-radius -moz-border-radius Thanks. |
|||
|
|
|
I originally expected that something like...
...would work. But, I was wrong: Webkit allows you to set the value for all four corners via Well... border-radius has sort of a history of implementation differences. Fortunately, there's a work-around: just specify each corner radius individually:
Note that if you wish to maintain compatibility with older browsers, you can go all-out and use the old browser-prefixed names:
This starts to get pretty crazy though; I would avoid it if possible. |
|||||||||||||||||
|
|
Use cssHooks. This will help you out: http://www.webmuse.co.uk/articles/border_radius_csshook_with_internet_explorer_support/ Links to the cssHooks: https://github.com/brandonaaron/jquery-cssHooks Good luck! |
|||
|
|
|
Juste an advice, we can use a function to detect browser's CSS prefix Here a sample code.. http://jsfiddle.net/molokoloco/f6Z3D/ |
|||
|
|