Jquery动画问题
下面的代码破坏了 jQuery:
$('.tabs li a').animate({
height: '40'
}, 1000, function() {
// Animation complete.
});
$('#tabs-wrap').animate({
marginTop: '-=147'
}, 1000, function() {
// Animation complete.
});
$('tabs li a').hover(function(){
$('tabs li a').animate({
height: '100'}, 1000, function(){
$('#tabs-wrap').animate({
marginTop: '+=147'
}, 1000, function(){
});
});
}, function(){
$('tabs li a').animate({
height: '40'}, 1000, function(){
$('#tabs-wrap').animate({
marginTop: '-=147'
}, 1000, function(){
});
});
});
我知道它看起来一团糟,抱歉!
任何人都可以发现出了什么问题吗?
This has code below has broken the jQuery:
$('.tabs li a').animate({
height: '40'
}, 1000, function() {
// Animation complete.
});
$('#tabs-wrap').animate({
marginTop: '-=147'
}, 1000, function() {
// Animation complete.
});
$('tabs li a').hover(function(){
$('tabs li a').animate({
height: '100'}, 1000, function(){
$('#tabs-wrap').animate({
marginTop: '+=147'
}, 1000, function(){
});
});
}, function(){
$('tabs li a').animate({
height: '40'}, 1000, function(){
$('#tabs-wrap').animate({
marginTop: '-=147'
}, 1000, function(){
});
});
});
I know it looks a mess, sorry!
Can anyone spot whats going wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
$('tabs li a')
缺少'.'
将选项卡标记为类。这是一个错误 - 可能还有更多。请帮我们/您自己一个忙,并在下次发布之前正确格式化代码。
$('tabs li a')
lacks a'.'
to mark tabs as a class. That's one error - might be more.Do us/yourself a favor and format the code properly before posting next time.