Advertisement
Guest User

Untitled

a guest
Aug 18th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. #ur div here fam{
  2. animation: float 6s ease-in-out infinite;}
  3.  
  4. @keyframes float {
  5. 0% {
  6. box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
  7. transform: translatey(0px);
  8. }
  9. 50% {
  10. box-shadow: 0 25px 15px 0px rgba(0,0,0,0.2);
  11. transform: translatey(-20px);
  12. }
  13. 100% {
  14. box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
  15. transform: translatey(0px);
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement