틀:CRT/styles.css: 두 판 사이의 차이

새 문서: .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); } }
 
편집 요약 없음
 
(같은 사용자의 중간 판 3개는 보이지 않습니다)
1번째 줄: 1번째 줄:
.Vierthalb::after {
.theme-television {
    content: "";
width: 100%;
    position: absolute;
height: 100%;
 
background: repeating-linear-gradient(to bottom,rgba(0,0,0,0.15)0px,rgba(0,0,0,0.15)2px,transparent 2px,transparent 5px);
    background: repeating-linear-gradient(
animation: crt-scan 4s linear infinite;
        to bottom,
z-index: 9999;
        rgba(0,0,0,0.35) 0px,
top: 0;
        rgba(0,0,0,0.35) 2px,
left: 0;
        transparent 2px,
position: fixed;
        transparent 4px
    );
 
    animation: crt-scan 6s linear infinite;
    z-index: 5;
}
}


18번째 줄: 13번째 줄:
@keyframes crt-scan {
@keyframes crt-scan {
     from {
     from {
         transform: translateY(-4px);
         transform: translateY(-5px);
     }
     }
     to {
     to {
         transform: translateY(4px);
         transform: translateY(5px);
     }
     }
}
}

2026년 2월 19일 (목) 02:05 기준 최신판

.theme-television {
	width: 100%;
	height: 100%;
	background: repeating-linear-gradient(to bottom,rgba(0,0,0,0.15)0px,rgba(0,0,0,0.15)2px,transparent 2px,transparent 5px);
	animation: crt-scan 4s linear infinite;
	z-index: 9999;
	top: 0;
	left: 0;
	position: fixed;
}

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