jQuery通过扩展实现抖动效果的方法

2019-12-18,,,,,

本文实例讲述了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;
}
2. 使用方法如下:
复制代码 代码如下:$(function() {
  $('#btn').click(function() {
    $(this).shake(2,10,400);
  });
});

希望本文所述对大家的jQuery程序设计有所帮助。

您可能感兴趣的文章:

  • jQuery实现动态表单验证时文本框抖动效果完整实例
  • jQuery实现网页抖动的菜单抖动效果
  • jQuery+css3实现文字跟随鼠标的上下抖动
  • jQuery插件jRumble实现网页元素抖动
  • jquery果冻抖动效果实现方法
  • Jquery右下角抖动、浮动 实例代码(兼容ie6、FF)
  • jquery.messager.js插件导致页面抖动的解决方法
  • 基于jquery的仿百度的鼠标移入图片抖动效果
  • jQuery模拟窗口抖动效果

《jQuery通过扩展实现抖动效果的方法.doc》

下载本文的Word格式文档,以方便收藏与打印。