-
https查看全部
-
https查看全部
-
cat *.js | grep http 筛选出所有js文件的内容中的包含http的部分查看全部
-
用es6的async/await改了一下: <script> var ball1 = document.querySelector(".ball1") var ball2 = document.querySelector(".ball2") var ball3 = document.querySelector(".ball3") const promiseAnimate = function(ball,distance){ return new Promise (function(revole,reject){ var timer1 = setInterval(function(){ var marginLeft = parseInt(ball.style.marginLeft,10) console.log(ball.style.marginLeft) if(marginLeft === distance){ clearInterval(timer1) revole() }else{ if(marginLeft < distance){ marginLeft++ }else{ marginLeft-- } ball.style.marginLeft = marginLeft +"px" } },15) }) } const myAnimate = async function(){ await promiseAnimate(ball1,100) await promiseAnimate(ball2,200) await promiseAnimate(ball3,300) await promiseAnimate(ball3,150) await promiseAnimate(ball2,150) await promiseAnimate(ball1,150) } myAnimate() </script>查看全部
-
Promise then 方法的使用查看全部
-
promise对象的三种状态查看全部
-
promose查看全部
-
Promise库查看全部
-
普通方式实现动画效果,局限性比较大查看全部
-
promise回调查看全部
-
promise,不断自身调用查看全部
-
爬虫,通过回调查看全部
-
Promise A 与 A+ 不同点 (1)、A+ 规范通过术语 thenable 来区分 promise对象 (2)、A+ 定义 onFulfilled/onRejected 必须是作为函数来调用,而且调用过程必须是异步的 (3)、A+严格定义了then 方法链式调用时, onFulilled/onRejected 的调用顺序查看全部
-
http与https的不同就是https需要SSL/TLS(进行数据加密)查看全部
-
Promise 库查看全部
举报
0/150
提交
取消