我正在使用一个在鼠标悬停时工作的脚本,bt 在单击时不起作用,可以告诉我..这是脚本和网站链接..即使我已经将悬停更改为单击,但它也无法正常工作......
http://tympanus.net/codrops/2010/04/29/awesome-bubble-navigation-with-jquery/
      <script type="text/javascript">
    $(function () {
        $('#nav > div').hover(
            function () {
                var $this = $(this);
                $this.find('img').stop().animate({
                    'width': '310px',
                    'height': '110px',
                    'top': '45px',
                    'left': '35px',
                    'opacity': '1.0'
                }, 500, 'easeOutBack', function () {
                    $(this).parent().find('ul').fadeIn(700);
                });
                $this.find('a:first,h2').addClass('active');
            },
            function () {
                var $this = $(this);
                $this.find('ul').fadeOut(500);
                $this.find('img').stop().animate({
                    'width': '52px',
                    'height': '52px',
                    'top': '0px',
                    'left': '0px',
                    'opacity': '0.1'
                }, 5000, 'easeOutBack');
                $this.find('a:first,h2').removeClass('active');
            }
        );
    });
   http://tympanus.net/codrops/2010/04/29/awesome-bubble-navigation-with-jquery/