JQuery 自定义CircleAnimation,Animate方法学习笔记


Posted in Javascript onJuly 10, 2011

在此贴出一些学习成果,希望能对学习JQuery的其他同学有所帮助,同时也记录下自己的学习情况。
看了一些JQuery的官方教程,已经有点心潮澎湃了,就决定自己尝试着写一些东西出来。我看到了很多很绚的动画效果,然后决定自己也尝试一下,我决定要写一个圆周运动的动画效果,下面贴出js代码

var CircleAnimation = function (center_left, center_top, id, clockwise, duration) { 
return new CircleAnimation.fn.init(center_left, center_top, id, clockwise, duration); 
}; 
CircleAnimation.fn = CircleAnimation.prototype = { 
item: {}, 
init: 
function (center_left, center_top, id, clockwise, duration) { 
this.item = $("#" + id + ""); 
if (!this.item[0]) 
return; 
currentPoint = { 
x: this.item.css("left") == "auto" ? 0 : String(this.item.css("left")).replace("px", "") - center_left, 
y: this.item.css("top") == "auto" ? 0 : String(this.item.css("top")).replace("px", "") - center_top 
}; 
center_left = center_left; 
center_top = center_top; 
if (currentPoint.x == 0 && currentPoint.y == 0) 
return; 
r = Math.pow(Math.pow(currentPoint.x, 2) + Math.pow(currentPoint.y, 2), 0.5); 
var flag = false; 
var caculateMiniAngle = function (angle) { 
//caculate the minimum angle diff, if the distance between 2 points less than 1px, we think this 2 ponits angle should be the minimum angle diff 
if (Math.sin(angle / 2) * 2 * r > 1) { 
return caculateMiniAngle(angle / 2); 
} 
else { 
return angle; 
} 
} 
miniAngle = caculateMiniAngle(Math.PI / 4); 
//store data to dom element 
this.item.data("currentPoint", currentPoint); 
this.item.data("center_left", center_left); 
this.item.data("center_top", center_top); 
this.item.data("r", r); 
this.item.data("clockwise", clockwise); 
this.item.data("miniAngle", miniAngle); 
this.item.data("duration", duration); 
//this.item.data("startX", this.startX); 
}, 
start: 
function () { 
var element; 
if (this.id) 
element = $("#" + this.id.toString()); 
else 
element = this.item; 
element.animate({ left: 1, top: 1 }, { 
duration: element.data( 
"duration"), 
step: CircleAnimation.fn.caculateNextPoint 
}); 
}, 
caculateNextPoint: 
function () { 
var el; 
el = $( 
"#" + this.id.toString()); 
var sin = el.data("currentPoint").y / el.data("r"); 
var angle = Math.asin(sin); 
if (el.data("currentPoint").x < 0) 
angle = Math.PI - angle; 
//caculate the angle diff between current point angle and next point angle 
var anglediff = el.data("miniAngle"); 
if (el.data("duration") != undefined) 
anglediff = 2 * Math.PI * 13 / el.data( 
"duration"); 
if (el.data("clockwise")) 
angle = angle - anglediff; 
else 
angle = angle + anglediff; 
var y = el.data("r") * Math.sin(angle); 
var x = el.data("r") * Math.cos(angle); 
var fx = arguments[1]; 
//set duration big enough then circle animation never stop 
fx.options.duration = ( 
new Date).getTime() - fx.startTime + 10000; 
if (fx.prop == "top") 
fx.now = y + el.data( 
"center_top"); 
if (fx.prop == "left") 
fx.now = x + el.data( 
"center_left"); 
el.data( 
"currentPoint", { x: x, y: y }); 
}, 
stop: 
function () { 
this.item.queue("fx", []); 
this.item.stop(); 
} 
}; 
CircleAnimation.fn.init.prototype = CircleAnimation.fn;
Javascript 相关文章推荐
javascript编程起步(第四课)
Jan 10 Javascript
Jquery实现简单的动画效果代码
Mar 18 Javascript
JavaScript入门基础
Aug 12 Javascript
jQuery控制frames及frame页面JS的方法
Mar 08 Javascript
JS获取当前页面名称的简单实例
Aug 19 Javascript
AngularJS改变元素显示状态
Apr 20 Javascript
Vue+Flask实现简单的登录验证跳转的示例代码
Jan 13 Javascript
vue自定义全局组件(自定义插件)的用法
Jan 30 Javascript
详解easyui基于 layui.laydate日期扩展组件
Jul 18 Javascript
移动端H5页面返回并刷新页面(BFcache)的方法
Nov 06 Javascript
js实现数字从零慢慢增加到指定数字示例
Nov 07 Javascript
深入理解 ES6中的 Reflect用法
Jul 18 Javascript
关于jQuery中的end()使用方法
Jul 10 #Javascript
动感效果的TAB选项卡jquery 插件
Jul 09 #Javascript
使用Jquery打造最佳用户体验的登录页面的实现代码
Jul 08 #Javascript
33个优秀的jQuery 教程分享(幻灯片、动画菜单)
Jul 08 #Javascript
jquery 选项卡效果 新手代码
Jul 08 #Javascript
基于jquery实现图片广告轮换效果代码
Jul 07 #Javascript
jquery调用wcf并展示出数据的方法
Jul 07 #Javascript
You might like
PHP JSON 数据解析代码
2010/05/26 PHP
PHP中::、-&amp;gt;、self、$this几种操作符的区别介绍
2013/04/24 PHP
PHP不用第三变量交换2个变量的值的解决方法
2013/06/02 PHP
深入apache host的配置详解
2013/06/09 PHP
PHP5.3安装Zend Guard Loader图文教程
2014/09/29 PHP
浅析php工厂模式
2014/11/25 PHP
php+mysql删除指定编号员工信息的方法
2015/01/14 PHP
在PHP中使用FastCGI解析漏洞及修复方案
2015/11/10 PHP
Fleaphp常见函数功能与用法示例
2016/11/15 PHP
ThinkPHP框架实现数据增删改
2017/05/07 PHP
Laravel5.0+框架邮件发送功能实现方法图文与实例详解
2019/04/23 PHP
PHP与Web页面的交互示例详解一
2020/08/04 PHP
通过Jscript中@cc_on 语句识别IE浏览器及版本的代码
2011/05/07 Javascript
JavaScript中的单引号和双引号报错的解决方法
2014/09/01 Javascript
jquery控制表单输入框显示默认值的方法
2015/05/22 Javascript
Angularjs中UI Router的使用方法
2016/05/14 Javascript
jQuery通用的全局遍历方法$.each()用法实例
2016/07/04 Javascript
JS弹出窗口的运用与技巧大全
2016/11/01 Javascript
wxPython使用系统剪切板的方法
2015/06/16 Python
python中正则表达式 re.findall 用法
2018/10/23 Python
了解不常见但是实用的Python技巧
2019/05/23 Python
python 标准差计算的实现(std)
2019/07/29 Python
pytorch多GPU并行运算的实现
2019/09/27 Python
python中selenium库的基本使用详解
2020/07/31 Python
pandas 数据类型转换的实现
2020/12/29 Python
python Matplotlib基础--如何添加文本和标注
2021/01/26 Python
what is the difference between ext2 and ext3
2013/11/03 面试题
汽车检测与维修个人求职信
2013/09/24 职场文书
大专自我鉴定范文
2013/10/23 职场文书
安全生产月活动总结
2014/05/04 职场文书
安全宣传标语
2014/06/10 职场文书
党政领导班子群众路线对照检查材料
2014/10/26 职场文书
2014年基层党支部工作总结
2014/12/04 职场文书
寻找最美乡村教师观后感
2015/06/18 职场文书
2016猴年开门红标语口号
2015/12/26 职场文书
公文格式,规则明细(新手收藏)
2019/07/23 职场文书