QQ联系客服

$('.side').bind('mouseenter mouseleave',function(e){
                    if(e.type=="mouseenter"){
                        if(!$(this).is(':animated')){
                            $(this).stop();
                            $(this).animate({right:"0px"},500);
                        }else{
                            $(this).unbind('animate');
                        }
                    }else{
                        $(this).stop();
                        $(this).animate({right:"-110px"},500);
                
                    }
                
                })
    

人如代码,规矩灵活;代码如诗,字句精伦。
原文地址:https://www.cnblogs.com/xinlinux/p/4022197.html