摘要: get_indet_list(id){ commonApi.getIndetList(query).then(res=>{ this.loading = false; let indetList = res.datalist; this.total = res.total; this.pags_in 阅读全文
posted @ 2020-07-31 15:30 靖哥哥~ 阅读(93) 评论(0) 推荐(0)
摘要: 动画可以通过设置多个节点来精确控制一个或一组动画,常用来实现复杂的动画效果。 引用动画:animation:动画名称 动画时间 运动曲线 何时开始 播放次数 是否反方向; animation: rotate 5s linear 0s infinite alternate; 定义动画: @keyfra 阅读全文
posted @ 2020-04-21 11:13 靖哥哥~ 阅读(245) 评论(0) 推荐(0)
摘要: 执行代码求输出,并说明为什么,严格模式下输出有变化吗,为什么 1、 var a = function () {this.b = 3;} var c = new a(); a.prototype.b = 9; var b = 7; a(); console.log(b); console.log(c. 阅读全文
posted @ 2020-04-10 10:24 靖哥哥~ 阅读(178) 评论(0) 推荐(0)