jQuery通过扩展实现抖动效果的方法
更新时间:2015年03月11日 16:41:37 作者:小编辑
这篇文章主要介绍了jQuery通过扩展实现抖动效果的方法,涉及jQuery扩展的技巧及抖动特效的实现方法,具有一定参考借鉴价值,需要的朋友可以参考下
本文实例讲述了jQuery通过扩展实现抖动效果的方法。分享给大家供大家参考。具体实现方法如下:
1. JavaScript代码如下:
复制代码 代码如下:
jQuery.fn.shake = function(intShakes /*Amount of shakes*/, intDistance /*Shake distance*/, intDuration /*Time duration*/) {
this.each(function() {
var jqNode = $(this);
jqNode.css({position: ‘relative'});
for (var x=1; x<=intShakes; x++) {
jqNode.animate({ left: (intDistance * -1) },(((intDuration / intShakes) / 4)))
.animate({ left: intDistance },((intDuration/intShakes)/2))
.animate({ left: 0 },(((intDuration/intShakes)/4)));
}
});
return this;
}
this.each(function() {
var jqNode = $(this);
jqNode.css({position: ‘relative'});
for (var x=1; x<=intShakes; x++) {
jqNode.animate({ left: (intDistance * -1) },(((intDuration / intShakes) / 4)))
.animate({ left: intDistance },((intDuration/intShakes)/2))
.animate({ left: 0 },(((intDuration/intShakes)/4)));
}
});
return this;
}
2. 使用方法如下:
复制代码 代码如下:
$(function() {
$('#btn').click(function() {
$(this).shake(2,10,400);
});
});
$('#btn').click(function() {
$(this).shake(2,10,400);
});
});
希望本文所述对大家的jQuery程序设计有所帮助。
相关文章
jQuery实现点击后高亮背景固定显示的菜单效果【附demo源码下载】
这篇文章主要介绍了jQuery实现点击后高亮背景固定显示的菜单效果,可实现鼠标点击菜单项后呈现出鼠标滑过一样的背景高亮显示效果,同时该显示效果固定不变,需要的朋友可以参考下2016-09-09jQuery DataTables插件自定义Ajax分页实例解析
这篇文章主要为大家详细介绍了jQuery DataTables插件自定义Ajax分页的相关资料,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下2016-05-05Jquery Uploadify多文件上传带进度条且传递自己的参数
Jquery Uploadify多文件上传带进度条且传递自己的参数,具体实现如下,需要的朋友可以学习下2013-08-08
最新评论