使用javascript以一定角度旋转div

时间:2011-08-03 19:28:03

标签: javascript rotation angle

我想用div旋转div一个角度,比如60度,顺时针使用javascript。

通过谷歌的很多链接,逻辑解决方案似乎使用数学库,但我不知道如何实现上述问题。三角学从来不是我的一杯茶:|

可以通过jQuery轻松完成,但我不允许使用任何库。 谷歌搜索时,我遇到了砂纸等。但必须使用可用的javascript函数。 此外,由于它在IE6上,因此无法使用CSS3。 :/

所以,说我想以一个角度旋转测试div,我该怎么做呢?

<html>
    <head>
        <style>#test {background:#000; width:100px; height:100px;}</style>
    </head>

<body>
    <div id="test"></div>
</body>
</html>

谢谢:)

1 个答案:

答案 0 :(得分:2)

好的,试试这个。这会旋转一个框(在IE8中)并且应该在IE6中工作。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
    <head>
        <title>IE6 rotation test</title>
        <style type="text/css">
            #spinner {
                position: absolute;
                top: 100px;
                left: 100px;
                width: 200px;
                height: 100px;
                border: 2px solid red;
                filter:progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand')
            }
        </style>
        <script type="text/javascript">
var spinnerAngle = 0;

window.onload = function() {
    setInterval(function () {
        spinnerAngle += Math.PI / 64;
        setElementAngle(document.getElementById('spinner'), spinnerAngle);
    }, 25);
}

function setElementAngle(ele, radians)
{
     costheta = Math.cos(radians);
     sintheta = Math.sin(radians);

     ele.filters.item(0).M11 = costheta;
     ele.filters.item(0).M12 = -sintheta;
     ele.filters.item(0).M21 = sintheta;
     ele.filters.item(0).M22 = costheta;
}
        </script>
    </head>
    <body>
        <div id="spinner"></div>
    </body>
</html>

the documentation for the Matrix filter。 “sizingMethod”设置显然是必要的。