如果由 jQuery 设置,CSS3 2D 变换在 IE9 上不起作用
根据标题,我正在使用 CSS3 的变换来平移和旋转一个对象,它在除 IE9 之外的每个浏览器中都能完美运行。
它可以在 IE9 中运行但前提是它直接写入 .css 文件。如果通过 jQuery (v. 1.5.1) 设置它会失败:
$('#example').css('-ms-transform', 'translate(200%) rotate(45deg) translate(-200%)');
有什么建议吗?
As per title, I'm translating and rotating an object with CSS3's transform and it works flawlessly in every browser except IE9.
It works in IE9 but only if it's written directly into the .css file. It fails if set by jQuery (v. 1.5.1) with:
$('#example').css('-ms-transform', 'translate(200%) rotate(45deg) translate(-200%)');
Any suggestion?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道是什么导致了这个问题。但是,您是否尝试过使用 cssText:
有时这似乎有效。
编辑:我相信问题与此 jQuery 问题有关:
http://bugs.jquery.com/ticket/ 8346
I don't know what is causing the problem. However, have you tried with cssText:
Sometimes this would seem to work.
EDIT: I believe the problem is related to this jQuery issue:
http://bugs.jquery.com/ticket/8346