Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

css infinite horizontal scroll with keyframe?

@keyframes animatedBackground {
  from { background-position: 0px 0; }
  to { background-position: -562px 0; }
}
#header-top {
  height: 190px;
  width:100%;
  background-image: url('example.png');
  background-repeat: repeat-x;
  animation: animatedBackground 2s linear infinite;
  line-height: 400px;

}

/*HTML*/
<div id="header-top">
</div>
 
PREVIOUS NEXT
Tagged: #css #infinite #horizontal #scroll
ADD COMMENT
Topic
Name
4+6 =