鼠标移入移出事件,防止抖动

            $li.on('mouseenter', function () {
                $btns.stop().animate({height: 30});
            });
            $li.on('mouseleave', function () {
                $btns.stop().animate({height: 0});
            });

猜你喜欢

转载自blog.csdn.net/qq_25261441/article/details/115768459