您好,登錄后才能下訂單哦!
網上發現一個很有意思的jQuery旋轉插件,支持Internet Explorer 6.0+ 、Firefox 2.0 、Safari 3 、Opera 9 、Google Chrome,高級瀏覽器下使用Transform,低版本ie使用VML實現。
調用和方法:
rotate(angle)
angle參數:[Number] – 默認為 0 – 根據給定的角度旋轉圖片
例如:
1 | $( "#img" ).rotate(45); |
rotate(parameters)
parameters參數:[Object] 包含旋轉參數的對象。支持的屬性:
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
這個函數只是簡單地返回旋轉對象當前的角度。
例如:
1 $("#img").rotate({ 2 angle: 45, 3 bind: { 4 click : function(){ 5 alert($(this).getRotateAngle()); 6 } 7 } 8 });
stopRotate
這個函數只是簡單地停止正在進行的旋轉動畫。
例如:
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 });
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。