Moving clouds or objects with CSS
CLASS
Place the class "move-object" in the section/row or item class field.
CUSTOM CSS
.move-object {
-webkit-animation: animateCloud 30s linear infinite;
-moz-animation: animateCloud 30s linear infinite;
animation: animateCloud 30s linear infinite;
}
@-webkit-keyframes animateCloud{0%{margin-left:-100%}100%{margin-left:100%; width:100%;}}