Run CSS3 animation only once (at page loading)

后端 未结 7 1590
面向向阳花
面向向阳花 2020-12-04 19:11

I\'m making a simple landing page driven by CSS3. To make it look awesome there\'s an plopping up:

@keyframes splash {
    from {
             


        
7条回答
  •  星月不相逢
    2020-12-04 19:53

    I just got this working on Firefox and Chrome. You just add/remove the below class accordingly to your needs.

    .animateOnce {
      -webkit-animation: NAME-OF-YOUR-ANIMATION 0.5s normal forwards; 
      -moz-animation:    NAME-OF-YOUR-ANIMATION 0.5s normal forwards;
      -o-animation:      NAME-OF-YOUR-ANIMATION 0.5s normal forwards;
    }
    

提交回复
热议问题