Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <style>
- @keyframes bounce {
- 0% {
- transform: translate(0em,100%) skew(10deg);
- }
- 50% {
- transform: translate(0em,0%);
- }
- 100% {
- transform: translate(0em,100%) skew(10deg);
- }
- }
- #text01 { animation: bounce .6s infinite; }
- </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement