@@ -307,7 +307,6 @@ import {Tween} from 'es6-tween/src/Tween.Lite'let tween = new Tween({x:0}).to(
307307 * [ .stop()] ( #Lite+stop )
308308 * [ .delay(amount)] ( #Lite+delay )
309309 * [ .repeat(amount)] ( #Lite+repeat )
310- * [ .repeatDelay(amount)] ( #Lite+repeatDelay )
311310 * [ .reverseDelay(amount)] ( #Lite+reverseDelay )
312311 * [ .yoyo(state)] ( #Lite+yoyo )
313312 * [ .easing(_ easingFunction)] ( #Lite+easing )
@@ -483,21 +482,6 @@ Sets how times tween is repeating
483482``` js
484483tween .repeat (2 )
485484```
486- <a name =" Lite+repeatDelay " ></a >
487-
488- ### lite.repeatDelay(amount)
489- Set delay of each repeat of tween
490-
491- ** Kind** : instance method of [ <code >Lite</code >] ( #Lite )
492-
493- | Param | Type | Description |
494- | --- | --- | --- |
495- | amount | <code >number</code > | Sets tween repeat delay / repeat wait duration |
496-
497- ** Example**
498- ``` js
499- tween .repeatDelay (500 )
500- ```
501485<a name =" Lite+reverseDelay " ></a >
502486
503487### lite.reverseDelay(amount)
@@ -703,14 +687,13 @@ let tween = new Tween(myNode, {width:'100px'}).to({width:'300px'}, 2000).start()
703687 * [ .pause()] ( #Tween+pause )
704688 * [ .play()] ( #Tween+play )
705689 * [ .restart([ noDelay] )] ( #Tween+restart )
706- * [ .seek(time, [ keepPlaying] )] ( #Tween+seek )
690+ * ~~ [ .seek(time, [ keepPlaying] )] ( #Tween+seek ) ~~
707691 * [ .duration(amount)] ( #Tween+duration )
708692 * [ .to(properties, [ duration] )] ( #Tween+to )
709693 * [ .start(time)] ( #Tween+start )
710694 * [ .stop()] ( #Tween+stop )
711695 * [ .delay(amount)] ( #Tween+delay )
712696 * [ .repeat(amount)] ( #Tween+repeat )
713- * [ .repeatDelay(amount)] ( #Tween+repeatDelay )
714697 * [ .reverseDelay(amount)] ( #Tween+reverseDelay )
715698 * [ .yoyo(state, [ _ easingReverse] )] ( #Tween+yoyo )
716699 * [ .easing(_ easingFunction)] ( #Tween+easing )
@@ -799,8 +782,10 @@ tween.restart()
799782```
800783<a name =" Tween+seek " ></a >
801784
802- ### tween.seek(time, [ keepPlaying] )
803- Seek tween value by ` time `
785+ ### ~~ tween.seek(time, [ keepPlaying] )~~
786+ *** Deprecated***
787+
788+ Seek tween value by ` time ` . Note: Not works as excepted. PR are welcome
804789
805790** Kind** : instance method of [ <code >Tween</code >] ( #Tween )
806791
@@ -899,21 +884,6 @@ Sets how times tween is repeating
899884``` js
900885tween .repeat (5 )
901886```
902- <a name =" Tween+repeatDelay " ></a >
903-
904- ### tween.repeatDelay(amount)
905- Set delay of each repeat of tween
906-
907- ** Kind** : instance method of [ <code >Tween</code >] ( #Tween )
908-
909- | Param | Type | Description |
910- | --- | --- | --- |
911- | amount | <code >number</code > | Sets tween repeat delay / repeat wait duration |
912-
913- ** Example**
914- ``` js
915- tween .repeatDelay (400 )
916- ```
917887<a name =" Tween+reverseDelay " ></a >
918888
919889### tween.reverseDelay(amount)
0 commit comments