gpt4 book ai didi

jquery - CSS 变换比例在 IE 中不起作用

转载 作者:太空宇宙 更新时间:2023-11-04 15:10:11 28 4
gpt4 key购买 nike

我正在使用 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/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com