Hello - Is it possible to add animated images in this theme (like on the Startup theme)?
If so, could you please link to documentation or provide notes on how this can be accomplished.
.myanimatingelement img {
display: block;
margin-left: 100%;
-webkit-transition: margin-left .6s ease;
-moz-transition: margin-left .6s ease;
-ms-transition: margin-left .6s ease;
-o-transition: margin-left .6s ease;
transition: margin-left .6s ease;
}
.myanimatingelement.loaded img {
margin-left: 0;
}