最新回答 / 蔡头2015
public void toggleMenu(){ if(open){ this.smoothScrollTo((int) (screenWidth-right), 0); open=false; }else{ this.smoothScrollTo(0, 0); open=true; } }
2015-06-08