jquery旋转div并使其向上移动。

时间:2012-11-28 15:07:29

标签: javascript jquery rotation

你好。我有一张图片,我把它放在div里面。基本上我想弄清楚如何旋转它然后让它移动。我尝试了一些代码,但它没有用。对此事的任何帮助都会很棒。

<script type="text/javascript">
$(function() {
    var $elie = $("#super");
    rotate(22);

    function rotate(degree) {        
        $elie.css({ WebkitTransform: 'rotate(' + degree + 'deg)'});  
        $elie.css({ '-moz-transform': 'rotate(' + degree + 'deg)'});                      
        timer = setTimeout(function() {
            rotate(++degree);
        },22);
    }
});
</script>

由于某些原因,代码无效并使图像旋转。再次感谢。

1 个答案:

答案 0 :(得分:0)

也许是因为你在定义它之前调用了这个函数。