使用Chrome的,按F12,在Console里复制回车以下代码
var vid = document.getElementById("video-box-mocoplayer-hls-video_html5_api");
vid.playbackRate = 0.5;
然后你会回来赞我的。
var vid = document.getElementById("video-box-mocoplayer-hls-video_html5_api");
vid.playbackRate = 0.5;
然后你会回来赞我的。
2017-09-17
已采纳回答 / 慕粉190336714
用控制台查了一下,你的speed 是不变的,这样的话,if(obj.offsetWidth==target)有可能永远都不满足,例如:用速度9从两百运动到400,会刚好错过400这个值,计时器就一直没被清除。解决方法:把speed的计算放进setInterval里面的那个参数下代码: function startMove(obj,target){ clearInterval(obj.timer); obj.timer=setInterval(fun...
2017-09-14
最新回答 / 沐雪琪
<!DOCTYPE html><html><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta http-equiv="X-UA-Compatible" content="ie=edge"><title>多物体动画</title><style>*{...
2017-09-13
最新回答 / qq_Justcomplete_0402
obj.style.attr=icur+speed+'px';改为 obj.style[attr]=icur+speed+'px';自己找到问题所在了
2017-09-08