#logoBlock
{
animation: bannerAnimate 150s infinite linear;
-webkit-animation: bannerAnimate 150s infinite linear;
-moz-animation: bannerAnimate 150s infinite linear;
-o-animation: bannerAnimate 150s infinite linear;
}
@keyframes bannerAnimate
{
from
{
background-position: 0;
}
to
{
background-position: -1980px;
}
}
@-webkit-keyframes bannerAnimate
{
from
{
background-position: 0;
}
to
{
background-position: -1980px;
}
}
@-moz-keyframes bannerAnimate
{
from
{
background-position: 0;
}
to
{
background-position: -1980px;
}
}
@-o-keyframes bannerAnimate
{
from
{
background-position: 0;
}
to
{
background-position: -1980px;
}
}