function startMove(itarget){
clearInterval(timer);
timer=setInterval(function(){
var speed=0;
if (oDiv.offsetLeft>itarget) {
speed=-10;
} else{
speed=10;
};
if (oDiv.offsetLeft==itarget) {
} else{
oDiv.style.left=oDiv.offsetLeft+speed+'px';
}
},30);
clearInterval(timer);
timer=setInterval(function(){
var speed=0;
if (oDiv.offsetLeft>itarget) {
speed=-10;
} else{
speed=10;
};
if (oDiv.offsetLeft==itarget) {
} else{
oDiv.style.left=oDiv.offsetLeft+speed+'px';
}
},30);
2015-07-16
window.onload=function(){
var oDive = document.getElementById('div1');
oDiv.onmouseoveer = function(){
startMove();
}
function startMove(){var oDiv = document.getElementById('div1');setInterval(function(){oDiv.style.left= oDive.offsetLeft+10+'px';},30)}}
var oDive = document.getElementById('div1');
oDiv.onmouseoveer = function(){
startMove();
}
function startMove(){var oDiv = document.getElementById('div1');setInterval(function(){oDiv.style.left= oDive.offsetLeft+10+'px';},30)}}
2015-07-07
if(alpha==iTarget){
clearInterval(timer);
}
这种做法,太不好了,很有可能就死循环了,不知道老师怎么想的,哎!
clearInterval(timer);
}
这种做法,太不好了,很有可能就死循环了,不知道老师怎么想的,哎!
2015-06-30