@keyframes animatedBackground {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 0;
  }
}
#animate-area {
  width: 200px;
  height: 200px;
  background-image: url(http://placekitten.com/400/200);
  background-position: 0px 0px;
  background-repeat: repeat-x;
  animation: animatedBackground 10s linear infinite alternate;
}
/*html code*/
/*<div id="animate-area"></div>*/




/*slider image*/
#horizontal {
width: 200px;
height: 200px;
background: url(img/slides/nivo/1.jpg);
-webkit-animation: backgroundScroll 20s linear infinite;
animation: backgroundScroll 20s linear infinite;
}

@-webkit-keyframes backgroundScroll {
from {background-position: 0 0;}
to {background-position: -400px 0;}
}
        
@keyframes backgroundScroll {
from {background-position: 0 0;}
to {background-position: -400px 0;}
}


/*html code*/
/*<div id="horizontal"></div>*/





/*slider content*/
.container1 {
  width: auto;
  height: 91px;
}
.bg1 {
  width: 100%;
  height: 100%;
  background: url(https://saiwebinfotech.com/images/sample/clients/client2.png) repeat-x left center;
  background-size: contain;
  -webkit-animation: displace 20s linear infinite;
  animation: displace 20s linear infinite;
}
@-webkit-keyframes displace {
  from {
    background-position: 0 center;
  }
  to {
    background-position: 160px center;
  }
}
@keyframes displace {
  from {
    background-position: 0 center;
  }
  to {
    background-position: 160px center;
  }
}

/*html code
/*<div class="container">
  <textarea class="bg"></textarea>
</div>*/