Advertisement
Guest User

Untitled

a guest
Sep 19th, 2014
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. .test {
  2. width: 50%;
  3. height: 250px;
  4. background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%), linear-gradient(to bottom, green 0%, blue 100%);
  5. background-size: 100% 100%;
  6.  
  7. animation: moving-gradient 1s infinite;
  8. }
  9.  
  10. @keyframes moving-gradient {
  11. 0% {
  12. background-position: left top;
  13. }
  14.  
  15. 100% {
  16. background-position: right bottom;
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement