码迷,mamicode.com
首页 > Web开发 > 详细

jqueryrotate 使用 帮助 笔记 学习

时间:2014-06-26 00:29:13      阅读:310      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   使用   cti   line   

 

1.想变角度

$("imgID").rotate(45);
 
2.想变角度时,有运动过程
$("imgID").rotate({animateTo:45});
这里可以说参数了  animateTo: 变化到的角度
 
3.想从A角度到B角度,有动画过程
$("imgID").rotate({angle:A, animateTo:B});
angle: 起始角度
 
4.第3点,时间太久了,想500MS完成
$("imgID").rotate({angle:A, animateTo:B, duration:500});
duration:  时间间隔
 
5.动运完了,想来点回调。。。
this.call_back = function() {};
$("imgID").rotate({angle:A, animateTo:B, duration:500, callback:call_back});
callback: 回调函数
 
6.好吧,我想曲线运动
this.call_back = function() {};
$("imgID").rotate({angle:A, animateTo:B, duration:500, callback:call_back, easing:$.easeInOutExp});

jqueryrotate 使用 帮助 笔记 学习,布布扣,bubuko.com

jqueryrotate 使用 帮助 笔记 学习

标签:style   class   blog   使用   cti   line   

原文地址:http://www.cnblogs.com/Mwsoft/p/3804236.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!