Skip to content

Instantly share code, notes, and snippets.

@Poltergeist
Created March 8, 2013 19:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Poltergeist/5119068 to your computer and use it in GitHub Desktop.
Save Poltergeist/5119068 to your computer and use it in GitHub Desktop.
Untitled
.turning{
perspective:500px;
text-align:center;
}
.turning p{
animation:mymove 1.5s linear infinite;
display:inline-block;
font-size:3em;
}
@keyframes mymove
{
from {transform:rotateY(0deg);}
to {;transform:rotateY(360deg);}
}
.blink{
animation:blink .1s infinite steps(2);
text-align:center;
}
@keyframes blink{
from {opacity:1;}
to {opacity:0;}
}
<div class="turning"><p>@</p></div>
<div class="blink">Hallo und willkommen auf meiner Website</div>
// alert('Hello world!');
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment