Skip to content
Snippets Groups Projects
Select Git revision
  • 8fab4d99e2eb27cf3d99b4518182af721c4470e2
  • main default protected
  • br_A
3 results

head_051.c

Blame
  • Progress.css 648 B
    .progress-block {
        margin: 2px 0;
        width: 200px;
        border-radius: 5px;
        text-align: center;
        line-height: 1.5;
        font-size: 10px;
        color: white;
        font-weight: bold;
    }
    
    .new-block {
        animation: dropAnimation 0.8s ease forwards; /* 드롭 애니메이션 */
    }
    
    @keyframes dropAnimation {
        0% {
            transform: translateY(-200px); /* 위쪽에서 시작 */
            opacity: 0; /* 투명하게 시작 */
        }
        50% {
            opacity: 0.5; /* 중간에서 반투명 */
        }
        100% {
            transform: translateY(0); /* 원래 위치 */
            opacity: 1; /* 완전히 보임 */
        }
    }