首页 > 代码库 > css zoom属性兼容ie,firefox,chrome

css zoom属性兼容ie,firefox,chrome

jquery代码:

$("body").css({    "zoom":"2",    "transform":"scale(2)"});

也可以直接在<style>里面写

    <style type="text/css">
body{zoom:2;transform:scale(2)} </style>

 

css zoom属性兼容ie,firefox,chrome