为了账号安全,请及时绑定邮箱和手机立即绑定

JS动画碾压

JS动画碾压

动漫人物 2023-07-20 10:43:33
我正在制作一个应用程序,其中复选框控制覆盖是否出现在屏幕上。为了使出现和消失平滑,我添加了动画。#overlay{    position:absolute;    height: 100vh;    width: 100vw;    background-color: white;    display:none;    animation-name: none;    animation-play-state: paused;    animation-fill-mode: forwards;    animation-duration: 1s;    opacity: 0;}@keyframes appear {    0%{opacity: 0}    100%{opacity: 1}}@keyframes disappear {    0%{opacity: 1}    100%{opacity: 0}}那么这里我用js来调用这些动画。function handleChange(checkbox) {    const animation = document.getElementById("overlay");    if(checkbox.checked === true){        if (window.innerWidth < 846) {            animation.style.display="block";            animation.style.animationName="appear";            animation.style.animationPlayState = "running";            document.getElementById('overlay2').style.display="none";            disableScroll();        }        return false;    }else{        animation.style.animationName="disappear";        animation.style.animationPlayState="running";        animation.addEventListener('animationend', () => {            animation.style.display="none";            document.getElementById("overlay2").style.display="block";        })        enableScroll();        return false;    }}首次选中和取消选中时,动画效果完美。但是,如果我重复此操作并第二次选中该框,它就会被压碎。也许有一点帮助?谢谢你!
查看完整描述

1 回答

?
DIEA

TA贡献1820条经验 获得超2个赞

因为您每次都添加了事件侦听器。


解决方案:


function handleChange(checkbox) {

    const animation = document.getElementById("overlay");

    if(checkbox.checked === true){

        if (window.innerWidth < 846) {

            animation.style.display="block";

            animation.style.animationName="appear";

            animation.style.animationPlayState = "running";

            document.getElementById('overlay2').style.display="none";

            disableScroll();

        }

        return false;

    } else {

        animation.style.animationName="disappear";

        animation.style.animationPlayState="running";

        const singleEvent = () => {

            animation.style.display="none";

            document.getElementById("overlay2").style.display="block";

            animation.removeEventListener('animationend', singleEvent)

        };

        animation.addEventListener('animationend', singleEvent);

        enableScroll();

        return false;

    }

}


查看完整回答
反对 回复 2023-07-20
  • 1 回答
  • 0 关注
  • 123 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信