最新回答 / fengyunzhu
var rotate=document.getElementById('id').style.transformrotate.substring(rotate.indexOf("(")+1,rotate.indexOf("d"))
2017-10-18
最新回答 / 丶痞子绅士
只看你贴出的代码,主要问题是判断条件的问题把move.style.left = move.offsetLeft+ 10+"px";放到if语句的后面,用else包围起来就可以解决问题。BUG原因:你把移动的代码写在了判断的前面,会导致你每次触发移入事件都会先移动10px,然后再清除计时器,如此循环往复,你的判断语句完全没有起到效果。
2017-09-20
最新回答 / 沐雪琪
<!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