摘要: // 矩形(构造器/父类) function Rectangle (height, width) { this.height = height; this.width = width; } // 获取面积 Rectangle.prototype.getArea = function () { ret 阅读全文
posted @ 2018-10-26 23:13 贝尔塔猫 阅读(138) 评论(0) 推荐(0)
摘要: let scrollHandle = (el) => { // 如果已经滚到底部了 if (el.scrollHeight - el.scrollTop el.clientHeight) { console.log(123) } } // 懒加载优化:滚动节流策略 let __SCROLLTIMER 阅读全文
posted @ 2018-10-26 22:55 贝尔塔猫 阅读(226) 评论(0) 推荐(0)