Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Background scrolling animation */
- .background {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background-image: url(/GFX/stonwall.png);
- background-size: auto;
- background-repeat: repeat;
- animation: scrollBackground 7s linear infinite;
- z-index: -1;
- }
- @keyframes scrollBackground {
- from {
- background-position: 0 0;
- }
- to {
- background-position: 24px 24px;
- }
- }
- /* Class to apply the panning animation to any element with the specific background */
- .panning-background {
- background-image: url(/GFX/stonwall.png);
- background-size: auto;
- background-repeat: repeat;
- animation: scrollBackground 7s linear infinite;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement