jQuery实现抖动效果
Posted hllive
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery实现抖动效果相关的知识,希望对你有一定的参考价值。
//抖动效果 //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实现抖动效果的主要内容,如果未能解决你的问题,请参考以下文章