Jquery动画问题

时间:2011-01-10 21:55:04

标签: jquery hover jquery-animate

这下面的代码打破了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(){

                      });
                  });  
              });

我知道这看起来很乱,对不起!

有人能发现什么问题吗?

1 个答案:

答案 0 :(得分:1)

$('tabs li a')缺少'.'标记标签作为课程。这是一个错误 - 可能更多。

在下次发布之前,请帮我们/帮忙并正确格式化代码。