欢迎各位兄弟 发布技术文章
这里的技术是共享的


演示1 直接旋转一个角度
| 1 | $('#img1').rotate(45); | 
演示2 鼠标移动效果
| 1 2 3 4 5 6 7 8 9 | $('#img2').rotate({     bind : {        mouseover : function(){            $(this).rotate({animateTo: 180});        }, mouseout : function(){            $(this).rotate({animateTo: 0});        }    }}); | 
演示3 不停旋转
| 1 2 3 4 5 | varangle = 0;setInterval(function(){    angle +=3;    $('#img3').rotate(angle);}, 50); | 
| 1 2 3 4 5 6 7 8 | varrotation = function(){    $('#img4').rotate({        angle: 0,         animateTo: 360,         callback: rotation    });}rotation(); | 
| 1 2 3 4 5 6 7 8 9 10 11 | varrotation2 = function(){    $('#img5').rotate({        angle: 0,         animateTo: 360,         callback: rotation2,        easing: function(x,t,b,c,d){            returnc*(t/d)+b;        }    });}rotation2(); | 
演示4 点击旋转
| 1 2 3 4 5 6 7 8 9 10 11 | $('#img6').rotate({     bind: {        click: function(){            $(this).rotate({                angle: 0,                animateTo: 180,                easing: $.easing.easeInOutExpo            });        }    }}); | 
| 1 2 3 4 5 6 7 8 9 10 11 | varvalue2 = 0;$('#img7').rotate({     bind: {        click: function(){            value2 +=90;            $(this).rotate({                animateTo: value2            });        }    }}); | 
| 附件 | 大小 | 
|---|---|
|  jQuery旋转插件jqueryrotate下载 | 47.01 KB |