jQueryRotate.js是一款跨浏览器控制图片旋转jquery插件。jQueryRotate.js旋转图片插件可以使用CSS3动画来对图片进行任意角度的旋转。对于不支持CSS3动画的浏览器,插件会自动使用canvas或VML(IE6)技术进行回退。
在页面<>
<script src="path/to/jquery.min.js"></script> <script src="path/to/jQueryRotate.js"></script>
jQueryRotate.js插件集成了4个用于图片旋转的方法,分别为:
一、rotate(angle)
:简单的将图片旋转任意角度。
$("#img").rotate(45);
二、rotate(parameters)
:通过配置参数来旋转图片。
parameters
参数包括:
三、getRotateAngle()
:返回图片旋转的角度。
$("#img").rotate({ angle: 45, bind: { click : function(){ alert($(this).getRotateAngle()); } } });
四、stopRotate()
:停止图片旋转动画。
$("#img").rotate({ bind: { click: function(){ $("#img").rotate({ angle: 0, animateTo: 180, duration: 6000 }); setTimeout(function(){ $("#img").stopRotate(); }, 1000); } } });
jQueryRotate.js控制图片旋转jquery插件的github地址为:https://github.com/wilq32/jqueryrotate