Code: Select all
@keyframes anim
{
from { background-position: 0 0; }
to { background-position: 256px 256px; }
}
div
{
background-image: url('256.png');
width: 256px;
height: 256px;
background-size: 256px 256px;
background-repeat: repeat;
animation: anim 5s linear infinite;
}
Code: Select all
256.png