Jquery动画问题

发布于 2024-10-11 22:46:19 字数 1108 浏览 2 评论 0原文

下面的代码破坏了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

撩起发的微风 2024-10-18 22:46:19

$('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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文