All Collections
CSS hacks
Animation - appearing image
Animation - appearing image
Aleks avatar
Written by Aleks
Updated over a week ago
  • Click on the gear button of your image and go to Additional CSS

  • Paste the following code into the opened window and click on Save

.ddr-widget__image {
 animation: 1s slidein-left;


 }
@keyframes slidein-left {
 from {
   opacity: 0;
   -webkit-transform: translate3d(5%, 0, 0);
   transform: translate3d(5%, 0, 0);
 }

 to {
   opacity: 1;
   -webkit-transform: translate3d(0, 0, 0);
   transform: translate3d(0, 0, 0);
 }
  • Save and publish your page

That's it!

Be sure to contact us of any questions arise!

Did this answer your question?