css3 fade in on page load, out after seconds

后端 未结 4 1822
不思量自难忘°
不思量自难忘° 2021-02-10 16:55

i have been searching around stackoverflow for an answer for a while but it seems to me this isn\'t been questioned before.

excuses if i might have missed the answer som

4条回答
  •  刺人心
    刺人心 (楼主)
    2021-02-10 17:42

    Have you tried a delay in this form?

    transition-delay: 2s;
    -webkit-transition-delay: 2s; /* Safari */
    

    or:

    animation-delay:2s;
    -webkit-animation-delay:2s; /* Safari and Chrome */
    

提交回复
热议问题