Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <style>
- #scream {
- font-size: 1.5em;
- display: inline-block;
- font-family: lovely;
- animation-name:hi;
- animation-duration: 2s;
- animation-iteration-count: infinite;
- }
- @keyframes hi {
- 0% {
- transform: rotate(
- 5deg);
- }
- 50% {
- transform: rotate(
- -5deg);
- }
- 100% {
- transform: rotate(
- 5deg);
- }
- }
- </style>
Advertisement
Add Comment
Please, Sign In to add comment