Template:Template:Annoying.css on wheels

From Soyjak Wiki, The Free Soycyclopedia
Revision as of 13:37, 2 July 2023 by Cliffsend (talk | contribs)
Jump to navigationJump to search
/* Testing */
* { background-color: beige; }
p { background-color: red; }

* {
  animation: .5s ease-in-out 1s infinite alternate fade, 
             200s linear infinite spin;
}

p:before {
	content: "before";
	animation: 2s linear infinite baby;
}

@keyframes baby {
	from { content: "a"; }
	to { content: "baby"; }
}

@keyframes fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}