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

jQuery实现抖动效果

时间:2016-10-10 02:05:00      阅读:268      评论:0      收藏:0      [点我收藏+]

标签:

//抖动效果
//intShakes:抖动次数;intDistance:抖动左右距离;intDuration:持续时间
jQuery.fn.shake = function (intShakes, intDistance, intDuration) {
    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;
}

使用:

$(‘#tishi‘).shake(3, 20, 400);

 

jQuery实现抖动效果

标签:

原文地址:http://www.cnblogs.com/hllive/p/5944396.html

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