Hide reveal.js fragments after their appearance

后端 未结 4 412
礼貌的吻别
礼貌的吻别 2021-01-04 10:56

Say I have a simple reveal.js slide like this:

first

4条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-01-04 11:44

    One could also use this solution :

    .reveal .slides section .fragment {
        opacity: 0;
        display: none; }
    .reveal .slides section .fragment.current-fragment {
        opacity: 1;
        display: inline; }
    

提交回复
热议问题