Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
You must create an account or log in to edit.

Template:Glitch Text Effect/styles.css: Difference between revisions

Template page
Content deleted Content added
No edit summary
No edit summary
Line 1: Line 1:
.glitch-effect {
.glitch-effect {
position: relative;
animation-name: glitch;
animation-name: glitch;
animation-iteration-count: infinite;
animation-iteration-count: infinite;

Revision as of 07:53, March 8, 2025

.glitch-effect {
	animation-name: glitch;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-timing-function: linear;
}

@keyframes glitch {
	from {
		transform: translate(-6px, -6px);
	}

	to {
		transform: translate(6px, 6px);
	}
}