Run CSS3 animation only once (at page loading)

后端 未结 7 1554
面向向阳花
面向向阳花 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:54

    So i just found a solution for that: In the hover animation do this:

    animation: hover 1s infinite alternate ease-in-out,splash 1;
    
    0 讨论(0)
提交回复
热议问题