:CRT/styles.css

삼쩌모 (토론 | 기여)님의 2026년 2월 19일 (목) 01:58 판 (새 문서: .Vierthalb::after { content: ""; position: absolute; background: repeating-linear-gradient( to bottom, rgba(0,0,0,0.35) 0px, rgba(0,0,0,0.35) 2px, transparent 2px, transparent 4px ); animation: crt-scan 6s linear infinite; z-index: 5; } 줄이 아래로 흐르는 효과: @keyframes crt-scan { from { transform: translateY(-4px); } to { transform: translateY(4px); } })
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)
.Vierthalb::after {
    content: "";
    position: absolute;

    background: repeating-linear-gradient(
        to bottom,
        rgba(0,0,0,0.35) 0px,
        rgba(0,0,0,0.35) 2px,
        transparent 2px,
        transparent 4px
    );

    animation: crt-scan 6s linear infinite;
    z-index: 5;
}

/* 줄이 아래로 흐르는 효과 */
@keyframes crt-scan {
    from {
        transform: translateY(-4px);
    }
    to {
        transform: translateY(4px);
    }
}