小编典典

CSS3转换:IE中的缩放

css

我想使用CSS3属性transform:scale。

div
{
     transform: scale(0.5,0.5);
}

有没有办法在Internet Explorer 8及更低版本中模仿它?可能与filterJava解决方案有关?

我在网上搜索没有任何结果。

非常感谢Vincent


阅读 457

收藏
2020-05-16

共1个答案

小编典典

IE9支持转换:

-ms-transform: scale(0.5,0.5);

对于其他版本的IE,存在复杂的语法。像这样:

filter: progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand',
    M11=1.5320888862379554, M12=-1.2855752193730787,
    M21=1.2855752193730796, M22=1.5320888862379558);
2020-05-16