我正在使用Jquery和CSS缩放图像:
$('#Site img').css({
zoom: CurrentZoom,
'-ms-transform': 'scale(' + CurrentZoom + ')',
'-moz-transform': 'scale(' + CurrentZoom + ')',
'-o-transform': 'scale(' + CurrentZoom + ')'
});
$('#Site canvas').css({
zoom: CurrentZoom,
'-ms-transform': 'scale(' + CurrentZoom + ')',
'-moz-transform': 'scale(' + CurrentZoom + ')',
'-o-transform': 'scale(' + CurrentZoom + ')'
});
但除IE之外,它在所有浏览器上都能正常工作。
最佳答案
根据msdn,为确保最大的兼容性,最好同时包含transform
和-ms-transform
。
这仅适用于IE9 +
对于IE8 Matrix filter。
关于jquery - CSS转换比例在IE中不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15403360/