06 2020 档案
摘要:资料 https://github.com/rough-stuff/rough-notation annotation 这个对象 isShowing() 判断目前显示还是隐藏 Boolean show() 显示,展示动画 hide() 隐藏,这不是动画 remove() 删除跟dom的联系 确定的东
阅读全文
摘要:pop,shift 细节问题 如果本来是一个空数组,删除后,返回值为undefined let a=[] a.shift() //undefined css渐变显示 递归 const rangOf = (a, b) => { if (a b) { return [a] } else { let nu
阅读全文
摘要:参考资料 https://www.freecodecamp.org/news/ https://kb.kutu66.com/tag/javascript https://t.codebug.vip/ https://javascript-conference.com/blog/ https://ww
阅读全文
摘要:类型限制在数组里面写函数 export interface Plugin { extraReducers?: () => { [name: string]: (stare: any, ...payload: any) => void } } const plugins: Plugin[] = [ {
阅读全文
摘要:typescript 差缺补漏 资料 交叉点类型 交集类型是将多个类型组合为一种的方法,就是多个类型的合并 type LeftType = { id: number left: string } type RightType = { id: number right: string } type I
阅读全文
摘要:from 表单特殊的点 formData1 = new FormGroup({ firstName: new FormControl("Kevin"), lastName: new FormControl("Yang"), }); console.log(formData1.value); // {
阅读全文
摘要:Fucntion function add(a) { return this.name + this.age + a } console.log(add.call({name: 'xxx', age: 12}, 'm')) console.log(add.apply({name: 'xxx', ag
阅读全文
摘要:css 尺寸的小技巧 1vw等于1/100的视口宽度 1vh等于1/100的视口高度 vh和vw依据于视口的高度和宽度 vmax vmin 可以解决横屏的问题 vmin vw和vh中较小的值 vmax vw和vh较大的值 width:100vmin; 有意思的滤镜 将HTML DOM元素转换为交互式
阅读全文