摘要:
@keyframes 关键帧动画写在less里的时候,务必要写在所有的{}之外,不能被{}包裹 甚至务必写在代码的最后 不然报错 Compilation resulted in incorrect CSS. The @keyframes ended up inside a body of rule 阅读全文
摘要:
Time t = new Time();//实例化Time类 t.setToNow();//取得当前的系统时间 int month = t.month;//获取月 int year = t.year;//获取年 int minute = t.minute;//获取分钟 int date = t.mo 阅读全文
摘要:
如何写入JSON 需要第三方jar包,JSON包 //写入json数据 public static String sendJson() { JSONObject json = new JSONObject(); User user = new User("username", "address", 阅读全文