jquery网页右侧悬浮qq在线客服代码

jquery网页右侧悬浮qq在线客服代码1607
 $(".suspend").mouseover(function() {
        $(this).stop();
        $(this).animate({width: 160}, 400);
    })
	
    $(".suspend").mouseout(function() {
        $(this).stop();
        $(this).animate({width: 40}, 400);
    });

也许你还喜欢