不知道这个视频是什么时候出土的,感觉现在有直接用CSS3里的hover、transition-duration、transition-timing-function也能实现哒><
2015-07-23
最新回答 / 慕设计9479289
https://www.imdb.com/list/ls501250770/ https://www.imdb.com/list/ls501250711/ https://www.imdb.com/list/ls501250730/ https://www.imdb.com/list/ls501255489/ https://www.imdb.com/list/ls501255489/?mode=desktop https://www.imdb.com/list/ls501255957/ https://...
2015-07-22
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