網(wǎng)上發(fā)現(xiàn)一個(gè)很有意思的jQuery旋轉(zhuǎn)插件,支持Internet Explorer 6.0+ 、Firefox 2.0 、Safari 3 、Opera 9 、Google Chrome,高級(jí)瀏覽器下使用Transform,低版本ie使用VML實(shí)現(xiàn)。
網(wǎng)站建設(shè)哪家好,找創(chuàng)新互聯(lián)!專注于網(wǎng)頁(yè)設(shè)計(jì)、網(wǎng)站建設(shè)、微信開(kāi)發(fā)、小程序定制開(kāi)發(fā)、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項(xiàng)目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了高坪免費(fèi)建站歡迎大家使用!
調(diào)用和方法:
rotate(angle)
angle參數(shù):[Number] – 默認(rèn)為 0 – 根據(jù)給定的角度旋轉(zhuǎn)圖片
例如:
1 | $( "#img" ).rotate(45); |
rotate(parameters)
parameters參數(shù):[Object] 包含旋轉(zhuǎn)參數(shù)的對(duì)象。支持的屬性:
1 | $( "#img" ).rotate({angle:45}); |
$("#img").rotate({bind:{ click: function(){ $(this).rotate({ angle: 0, animateTo:180 }) } } });
$("#img").rotate({bind:{ click: function(){ $(this).rotate({ duration:6000, angle: 0, animateTo:100 }) } } });
| function (x, t, b, c, d) { return -c * ((t=t/d-1)*t*t*t - 1) + b; } |
Where:t: current time,
b: begInnIng value,
c: change In value,
d: duration,
x: unused
No easing (linear easing):
| function (x, t, b, c, d) { return (t/d)*c ; } |
Example (click on arrow):
$("#img").rotate({bind:{ click: function(){ $(this).rotate({ angle: 0, animateTo:180, easing: $.easing.easeInOutElastic }) } } });
$("#img").rotate({bind:{ click: function(){ $(this).rotate({ angle: 0, animateTo:180, callback: function(){ alert(1) } }) } } });
getRotateAngle
這個(gè)函數(shù)只是簡(jiǎn)單地返回旋轉(zhuǎn)對(duì)象當(dāng)前的角度。
例如:
1 $("#img").rotate({ 2 angle: 45, 3 bind: { 4 click : function(){ 5 alert($(this).getRotateAngle()); 6 } 7 } 8 });
stopRotate
這個(gè)函數(shù)只是簡(jiǎn)單地停止正在進(jìn)行的旋轉(zhuǎn)動(dòng)畫(huà)。
例如:
1 $("#img").rotate({ 2 bind: { 3 click: function(){ 4 $("#img").rotate({ 5 angle: 0, 6 animateTo: 180, 7 duration: 6000 8 }); 9 setTimeout(function(){ 10 $("#img").stopRotate(); 11 }, 1000); 12 } 13 } 14 });