tslint 校验ts语法错误 发表于 2019-01-09 | 阅读次数 tslint 校验ts语法错误1$ tslint -c tslint.json -p tsconfig.json --type-check 但是该参数即将废弃,官方建议使用tsc检查12$ tsc -p tsconfig.json --noEmit$ tslint -c tslint.json -p ... 阅读全文 »
H5 Video 视频编码格式H.264 发表于 2018-12-24 | 阅读次数 想要在HTML5中播放视频,并且主流浏览器的最新版本中支持良好;可以使用WebM 和 MPEG H.264 AAC 编码格式https://developer.mozilla.org/zh-CN/docs/Web/HTML/Supported_media_formats 视频格式转化时要选H.264 ... 阅读全文 »
浏览器打开文件url直接下载 发表于 2018-12-14 | 阅读次数 前端:通过给A标签加download属性,其value为文件名 同步1<a href="xxx/xxx/xx.xx" download="filename"> 异步1234567891011121314//谷歌,360极速等浏览器下载functio ... 阅读全文 »
装饰器解决按钮、表单重复提交 发表于 2018-12-10 | 阅读次数 1234567891011121314151617181920212223242526272829303132export function HandleAsyncOperate(name?) { return function ( target: any, ... 阅读全文 »
sketch不同版本打开文件异常的问题 发表于 2018-12-07 | 阅读次数 如果低版本sketch打开文件出现异常,即使升级了软件版本还是无法正常显示刚才的文件,升级系统也一样。 不升级系统,升级软件 老sketch文件显示异常 新sketch文件未知(未能尝试,系统已经升级了…) 升级系统,不升级软件(谁会这么干呢…) 老sketch文件未知 新sketch文件 ... 阅读全文 »
history API popState与go 发表于 2018-11-29 | 阅读次数 12345678910111213history.pushState({ page: "credited"},"");history.pushState({ page: "current"},"");window.addEventListener( ... 阅读全文 »
react-css-module import多个css的问题 发表于 2018-11-20 | 阅读次数 12345import './CoolList.css'import utils from 'Utils.css'<ol styleName="cool-list utils.unstyled-list"></ol> ... 阅读全文 »
移动端背景图片固定 background-attachment fixed 发表于 2018-11-15 | 阅读次数 https://stackoverflow.com/questions/23236158/how-to-replicate-background-attachment-fixed-on-ios 阅读全文 »
tslint error不终止webpack dev 发表于 2018-11-14 | 阅读次数 12"defaultSeverity": "warning" will only work for tslint rules.If tsconfig.json has "noUnusedLocals": true then webpack will return error to UI regard ... 阅读全文 »