【发布时间】:2020-02-25 05:30:04
【问题描述】:
我想让 flexdashboard/storyboard 上的项目符号在单击右箭头时递增显示(演示样式)。这怎么可能实现?我猜有点Javascript,但我不知道从哪里开始。从 Rmd 导出的 Ioslides 具有增量项目符号的选项,但我希望能够在每张幻灯片的基础上执行此操作,并且无论如何我喜欢 flexdashboard/storyboard 更大的灵活性。
看到这个 MWE:
---
title: "How to increment?"
output:
flexdashboard::flex_dashboard:
storyboard: true
---
### Slide 1
```{r}
hist(rnorm(100))
```
***
- I want these bullets
- to appear
- incrementally
### Slide 2
```{r}
hist(runif(100))
```
***
- I want these bullets
- to appear
- all at once
- when this slide
- comes up
【问题讨论】:
标签: javascript r r-markdown flexdashboard