Skip to main content

Command Palette

Search for a command to run...

Moving clouds or objects with CSS

Updated
1 min readView as Markdown

Example:

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%;}}
18 views