CSS3 Transition not working

前端 未结 5 896
醉酒成梦
醉酒成梦 2020-12-17 08:51

I couldn\'t get transitions to work on this page, anybody has any idea why?

div.sicon a {
    transition: background 0.5s linear;
    -moz-transition: backgr         


        
5条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-17 09:53

    For me, it was having display: none;

    #spinner-success-text {
        display: none;
        transition: all 1s ease-in;
    }
    
    #spinner-success-text.show {
        display: block;
    }
    

    Removing it, and using opacity instead, fixed the issue.

    #spinner-success-text {
        opacity: 0;
        transition: all 1s ease-in;
    }
    
    #spinner-success-text.show {
        opacity: 1;
    }
    

提交回复
热议问题