简体   繁体   中英

how to stop animation Javascript?

When hovering over the menu, I want to trigger the animation. I want to stop it if the menu is no longer overflown.

CORRECTION


     animeMiddle() {
            this.menu.addEventListener('mouseover', () => {
                  this.ctx = this.middle.animate([
                            {width: '0'},
                            {width: '100%'}
                        ],
                        {
                            duration: 1000, iterations: Infinity
                        })

            });
            this.menu.addEventListener('mouseout', () => {
                this.ctx.cancel();
            });
        }

Animation.pause() is what you need.

From MDN:

The pause() method of the Web Animations API's Animation interface suspends playback of the animation.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM