如何使用 javascript 使旋转图像跨浏览器工作

发布于 2024-12-18 02:02:59 字数 552 浏览 0 评论 0 原文

我正在使用 JavaScript 构建一个模拟时钟,我知道如果使用 jQuery 会容易得多,但这里不提供这种选择。

在 Chrome 和 Safari(即 webkit 浏览器)中一切正常,但在其他浏览器中则不然。

这是我的勾选方法,基本上它根据时间旋转图像。

function tick(deg, elmt){
document.getElementById(elmt).setAttribute(
        "style", "transform:rotate(" + deg + "deg);"
      + "-moz-transform: (" + deg + "deg);"
      + "-o-transform: (" + deg + "deg);"
      + "-webkit-transform:rotate(" + deg + "deg);"
      + "filter:progid:DXImageTransform.Microsoft.BasicImage(" + deg + "deg);"
    ); 
}

有什么建议让它发挥作用吗?

im building an analog clock using JavaScript, i know it will be alot easier if i do it with jQuery but it's not an option here.

Everything's working in Chrome and Safari(meaning the webkit browsers) but not in any of the others.

Here is my tick method, basically it rotates the image according to the time.

function tick(deg, elmt){
document.getElementById(elmt).setAttribute(
        "style", "transform:rotate(" + deg + "deg);"
      + "-moz-transform: (" + deg + "deg);"
      + "-o-transform: (" + deg + "deg);"
      + "-webkit-transform:rotate(" + deg + "deg);"
      + "filter:progid:DXImageTransform.Microsoft.BasicImage(" + deg + "deg);"
    ); 
}

any suggestion to make it work?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

毁虫ゝ 2024-12-25 02:02:59

您尚未对 -moz--o- 属性使用 rotate,即 IE 语法中的 rotation

function tick(deg, elmt){
document.getElementById(elmt).setAttribute(
        "style", "transform:rotate(" + deg + "deg);"
      + "-moz-transform: rotate(" + deg + "deg);"
      + "-o-transform: rotate(" + deg + "deg);"
      + "-webkit-transform:rotate(" + deg + "deg);"
      + "-ms-transform:rotate("+ deg +"deg);"
    ); 
}

演示位于 http://jsfiddle.net/gaby/fjHHX/3/


更新 了

改变 代码以支持 IE9 -ms- 扩展并删除了 filter ,该过滤器不允许任意旋转(仅 0、90、180、270 度 em>)..

为了支持 IE 版本 8 及更低版本,您可以使用矩阵转换,但它会变得丑陋..请查看 http://css3please.com/
或者查看 http://www.boogdesign.com/examples/transforms 的来源/matrix-calculator.html 了解如何操作

You have not used rotate for the -moz- and -o- properties, the rotation in the IE syntax

function tick(deg, elmt){
document.getElementById(elmt).setAttribute(
        "style", "transform:rotate(" + deg + "deg);"
      + "-moz-transform: rotate(" + deg + "deg);"
      + "-o-transform: rotate(" + deg + "deg);"
      + "-webkit-transform:rotate(" + deg + "deg);"
      + "-ms-transform:rotate("+ deg +"deg);"
    ); 
}

Demo at http://jsfiddle.net/gaby/fjHHX/3/


Update

Altered the code to support the IE9 -ms- extension and removed the filter one which does not allow for arbitrary rotations (only 0, 90, 180, 270 degrees)..

For support of IE versions 8 and below you can use a matrix transformation but it gets ugly.. look at section .box_rotate at http://css3please.com/
or look at the source of http://www.boogdesign.com/examples/transforms/matrix-calculator.html for how to do it

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文