摘要:
这个应该是flex和position冲突的解决方案<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title></title> <meta cha 阅读全文
摘要:
function throttle(method,delay,duration){ var timer=null, begin=new Date(); return function(){ var context=this, args=arguments, current=new Date();; ... 阅读全文
摘要:
预加载: var callback = function(){ //初始化游戏; gameInit(); } //预加载图片 img_preload(GameConfig.gameimg, callback); function img_preload(img, callback){ var onl 阅读全文