()
| 128 | } |
| 129 | |
| 130 | cancel() { |
| 131 | if (this.currentTime > 0 && this.currentTime < this.#duration) { |
| 132 | this.#apply_keyframe(0); |
| 133 | } |
| 134 | // @ts-ignore |
| 135 | this.currentTime = null; |
| 136 | // @ts-ignore |
| 137 | this.startTime = null; |
| 138 | |
| 139 | this.playState = 'idle'; |
| 140 | this.#oncancel(); |
| 141 | raf.animations.delete(this); |
| 142 | } |
| 143 | |
| 144 | /** @param {() => {}} fn */ |
| 145 | set onfinish(fn) { |
no test coverage detected