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?
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?
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.