Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Other Ways to show video (or really moving images on a site) Re: Ways to show video (or really moving images on a site)

#126599
pixelgrid
Participant

i made a mistake writing the linear before

this is your code working

.photoContainer{
background:url(‘http://dl.dropbox.com/u/345640/bg.jpg’);
height:1066px;/*size of your image*/
width:1600px;
-webkit-animation:play .5s steps(5) infinite;
-moz-animation:play .5s steps(5) infinite;
animation:play .5s steps(5) infinite;
}

@-webkit-keyframes play {
100% { background-position: -8000px; }
}
@-moz-keyframes play {
100% { background-position: -8000px; }
}
@keyframes play{
100% { background-position: -8000px; }
}