$(button).click(function(){
if (Modernizr.zoom()) $('body').animate({ zoom: '200%'; }, 1000);
else $('body').alternative();
});
As you can see above … I want to zoom in into my page on click.
By the way: Is it good to use 'zoom' (css)? I'm not sure because I did not find any good description for 'zoom' (css). Or is it better to use 'scale' (css) to animate?
Main Question: Is there any way to detect if the browser supports this css-'zoom' (or whatever) feature? I'm using Modernizr, but within Modernizr there is nothing to detect if 'zoom' is available.