jQuery立体感顶部导航带下拉登录框特效代码

jQuery立体感顶部导航带下拉登录框特效代码435
jQuery立体感顶部导航带下拉登录框特效代码436
 $('#login-trigger').click(function () {
                $(this).next('#login-content').slideToggle();
                $(this).toggleClass('active');

                if ($(this).hasClass('active')) $(this).find('span').html('▲')
                else $(this).find('span').html('▼')
            })

也许你还喜欢