本文实例讲述了jQuery晃动层特效实现方法。分享给大家供大家参考。具体实现方法如下:
代码如下:
jQuery晃动层
script>
var box_left = 0;
$(document).ready(function () {
box_left = ($(window).width() - $('#box').width()) / 2;
$('#box,#footer').css({'left': box_left, 'position':'absolute'});
});
function shock()
{
for (i = 1; i < 7; i++)
{
$('#box').animate({
'left': '-=15'
}, 3, function() {
$(this).animate({
'left': '+=30'
}, 3, function() {
$(this).animate({
'left': '-=15'
}, 3, function() {
$(this).animate({
'left': box_left
}, 3, function() {
// shock end
});
});
});
});
}
}
script>
仿wp后台登录错误时左右晃动某一层
单击我查看效果
希望本文所述对大家的jQuery程序设计有所帮助。
下载本文