Repeat playback of animated banner

2

I made an animated banner in Google Web Designer and I can already see it in the browser, but only one is displayed or reproduced. time.

How can I make it play infinitely?

    
asked by Daniel Hernández 18.01.2016 в 17:45
source

1 answer

1

You must enter the code tab (code view) and in the css change the value of the repetitions in the animations from 1 to infinite, for example:

This is how the default CSS code for animations comes

#page1.gwd-play-animation .gwd-gen-66zmgwdanimation {
  animation: gwd-gen-66zmgwdanimation_gwd-keyframes 1s linear 0s 1 normal forwards;
}

then it would look like this:

#page1.gwd-play-animation .gwd-gen-66zmgwdanimation {
  animation: gwd-gen-66zmgwdanimation_gwd-keyframes 1s linear 0s infinite normal forwards;
}

This would solve your question.

    
answered by 19.01.2016 / 21:18
source