当前位置: 编程技术>jquery
jQuery晃动层效果一例
来源: 互联网 发布时间:2014-09-03
本文导语: jquery晃动层效果,代码: 代码示例: jQuery晃动层-www. body { font: 12px Georgia, serif; } a { text-decoration: none; } #header{margin:50px auto} #header p{text-align:center;font-size:16px;font-weight:bold} #box{width:400px;height:200px;background-color:#ccc;text-...
jquery晃动层效果,代码:
代码示例:
jQuery晃动层-www.
body { font: 12px Georgia, serif; }
a { text-decoration: none; }
#header{margin:50px auto}
#header p{text-align:center;font-size:16px;font-weight:bold}
#box{width:400px;height:200px;background-color:#ccc;text-align:center}
#footer{text-align:center;font-size:14px;position:absolute;bottom:50px}
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
});
});
});
});
}
}
仿wp后台登录错误时左右晃动某一层