Welcome to the Dead Internet Project


Home | Blog | Chat Room | Coding | File Archive | Internet History | Webring | Contact


Advertise here

Analog Flicker
CSS / HTML

A simple script that simulates an analog flicker effect on text.

Go Back

<style>
	@keyframes flicker {
		0% {
			opacity: 0.8;
		}
		100% {
			opacity: 1;
		}
	}
	.flicker-text {
		font-family: 'Roboto', sans-serif, monospace;
		font-size: 24px;
		font-weight: bold;
		text-transform: uppercase;
		letter-spacing: 1px;
		animation: flicker 0.01s infinite alternate;
	}
</style>

<p class="flicker-text">Analog Flicker</p>
						

© Copyright Dead Internet Online. All Rights Reserved.