Background Animation 01
by davidxmartins
HTML
<div class="center">
<h1>
Background Animation
</h1>
</div>
SCSS
@import url('https://fonts.googleapis.com/css?family=Source+Code+Pro:200');
body {
background-color: rgba(39, 134, 111, 0.3);
background-image: url('https://www.homemverde.pt/images/homem-verde-bg01c.jpg');
background-size:cover;
-webkit-animation: slidein 10s;
animation: slidein 10s;
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-direction: alternate;
animation-direction: alternate;
}
@-webkit-keyframes slidein {
from {background-position: center; background-size:130%; }
to {background-position: -100px 0px;background-size:120%;}
}
@keyframes slidein {
from {background-position: top;background-size:130%; }
to {background-position: -100px 0px;background-size:120%;}
}
.center
{
display: flex;
align-items: center;
justify-content: center;
position: absolute;
margin: auto;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: rgba(39, 134, 111, 0.3);
border-radius: 3px;
}
.center h1{
text-align:center;
color:white;
font-family: 'Source Code Pro', monospace;
text-transform:uppercase;
}