로드 중입니다. 잠시만 기다려 주세요. [Ctrl A 모두 선택 참고: 외부 J를 도입해야 하는 경우 실행하려면 새로 고쳐야 합니다. ] function DoubleAnimation(target,targetProperty,from,to,Duration) { this.Begin=function anonymous() { target[targetProperty]=from; var starttime=new Date(); setTimeout(StoryBoard(),1); function StoryBoard() { return function() { var now=new Date(); var d=now.getTime()-starttime.getTime(); target[targetProperty]=Math.round(from+(to-from)*d/Duration); if(d<Duration)setTimeout(StoryBoard(),10); } } } } var story=new DoubleAnimation(highlight.style,"left",-100,100,1300) setInterval("story.Begin()",1300);