-
DescriptionI have a slide in a revealjs presentation with several fragments and an incremental list (example below). Instead :
Originally, there was a single note - which I expected to be visible until the next slide, but disappeared when fragment 1 Additional info
---
title: TEST
subtitle: _notes visibility in flow_
self-contained: true
embed-resources: true
engine: knitr
format: revealjs
---
```{=html}
<style>
.reveal .slides section .fragment.step-fade-in-then-out {
opacity: 0;
display: none; }
.reveal .slides section .fragment.step-fade-in-then-out.current-fragment {
opacity: 1;
display: inline; }
</style>
```
## Slide title {.center}
. . .
TEXT 1
[fragment 1]{.fragment .fade-in-then-out}
<br>
[fragment 2]{.fragment}
::: {.notes}
NOTE 1 : should be visible AFTER fragment 2, until TEXT 2
:::
. . .
<br />
TEXT 2
::: incremental
* list 1
* list 2 [ - fragment 3]{.fragment}
:::
::: {.notes}
NOTE 2 : should be visible AFTER fragment 3
::: |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
|
I don't think you can or you would likely need some advanced hack using JavaScript. The easy thing to try first would be to set the |
Beta Was this translation helpful? Give feedback.
-
|
I managed to get the desired effect by inserting flow breaks (???) In the html presentation generated with the revised code
Flow breaks ( |
Beta Was this translation helpful? Give feedback.
I managed to get the desired effect by inserting flow breaks (???)
. . .before the notes (see below)In the html presentation generated with the revised code
Flow breaks (
. . .) are mentioned in the quarto documentation; I found out about them in Meghan Hall's Making Slides in Quarto with reveal.js