< button> 点击触发1</ button> < button> 点击触发2</ button> < div> </ div>
<style>* { margin : 0; padding : 0; } div { width : 100px; height : 100px; background-color : red; position : relative; top : 100px; left : 0; } .div1 { display : block; width : 50px; height : 50px; background-color : gold; margin-top : 200px; position : relative; top : 0; left : 0; } </style>
< script> var box = document. querySelector ( 'div' ) ; var btn1 = document. querySelector ( 'button:nth-child(1)' ) ; var btn2 = document. querySelector ( 'button:nth-child(2)' ) ; var timeID = null ; btn1. onclick = function ( ) { animation ( box, 0 , 700 , 20 , 60 ) ; } btn2. onclick = function ( ) { animation ( box, 700 , 200 , 20 , 60 ) ; } var flag = true ; function animation ( element, current, target, step, time) { if ( ! element. flag) { element. flag = true ; } if ( element. flag) { element. flag = false ; current = element. offsetLeft; if ( element. timeID != null ) { clearInterval ( element. timeID) ; element. timeID = null } element. timeID = setInterval ( function ( ) { if ( current > target) { step = - Math. abs ( step) ; } if ( Math. abs ( target - current) <= Math. abs ( step) ) { current = target; clearInterval ( element. timeID ) ; element. flag = true ; } else { current += step; } element. style. left = current + 'px' ; } , time) ; } return flag; } < / script>
实现效果:
进行动画函数的封装:
var timeID = null ; var flag = true ; function animation ( element, current, target, step, time) { if ( flag) { flag = false ; current = element. offsetLeft; if ( element. timeID != null ) { clearInterval ( element. timeID) ; element. timeID = null } element. timeID = setInterval ( function ( ) { if ( current > target) { step = - Math. abs ( step) ; } if ( Math. abs ( target - current) <= Math. abs ( step) ) { current = target; clearInterval ( element. timeID ) ; flag = true ; } else { current += step; } element. style. left = current + 'px' ; } , time) ; } return flag; }