Задать вопрос
Ответы пользователя по тегу Веб-разработка
  • Как сделать анимацию display none/block?

    @Chekistchek
    Если position: fixed или absolutе, то можно попробовать так:
    #start_display {
        width: 100px;
        height: 100px;
        position: fixed;
        z-index: -999;
        animation-duration: 1s;
        animation-name: disappear; 
    }
    @keyframes disappear {
        0% {background-color: white;z-index: 999;}
        80% {background-color: white;}
        99.9% {z-index: 999}
        100% {background-color: none;z-index: -999;}
    }
    Ответ написан
    Комментировать