添加样式试试.cerrar{
   position:fixed;
   left:0;
   top:40%;
  z-index:1000;
}

解决方案 »

  1.   

    想到一个笨办法 试试看吧#opciones{z-index:7000;position:absolute;padding-bottom:10px;width:120px;font:12px/140% arial, helvetica, sans-serif;background:#e7e7e7;color:#999;top:0px;right:0px;padding-top:10px}$("#opciones").animate({width:0},0);
    var flag = false;     $('#settings').click(function(){
            if(flag == false){
               
      $("#opciones").animate({width:120},"slow");   flag = true;
    }else{
    $("#opciones").animate({width:0},"slow");
    flag = false;
    }
            $(this).toggleClass("cerrar");
        });