Advertisement
hero0fwar

Untitled

Aug 3rd, 2016
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.94 KB | None | 0 0
  1. #header { background: url(%%yourimagename%%) 0 19px; height: 120px; }
  2.  
  3. #header-bottom-left { position: absolute; bottom: 0; }
  4.  
  5. #header:before {
  6.     background: url(%%yourimagename%%) no-repeat center top;
  7.     content: '';
  8.     position: absolute;
  9.     height: 120px;
  10.     top: 0px;
  11.     right: 0;
  12.     bottom: 0;
  13.     left: 0;
  14.     z-index: -1;
  15.     -webkit-animation: pan 120s linear infinite;
  16.     -moz-animation: pan 120s linear infinite;
  17.     animation: pan 120s linear infinite;
  18. }
  19. @-webkit-keyframes pan {
  20.     0%   { background-position: 50% 0; }
  21.     50%  { background-position: 50% -950px; }
  22.     100% { background-position: 50% 0; }
  23. }
  24. @-moz-keyframes pan {
  25.     0%   { background-position: 50% 0; }
  26.     50%  { background-position: 50% -950px; }
  27.     100% { background-position: 50% 0; }
  28. }
  29. @keyframes pan {
  30.     0%   { background-position: 50% 0; }
  31.     50%  { background-position: 50% -950px; }
  32.     100% { background-position: 50% 0; }
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement