css solution to hide div after x amount of seconds

后端 未结 3 1886
伪装坚强ぢ
伪装坚强ぢ 2021-01-04 09:49

Any way using css3 only to remove/hide the #a after say 90 seconds of page load ?


      
      
3条回答
  •  醉梦人生
    2021-01-04 10:45

    #hidethis { animation: css 0s 3s forwards; }
    
    @keyframes css  { to { visibility: hidden; } }
                        /* visibility / overflow: hidden; */
    Wait for 3 seconds...

提交回复
热议问题