Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/src/resources/schema/document-reveal-media.yml
12921 views
1
- name: preview-links
2
tags:
3
formats: [revealjs]
4
schema:
5
anyOf:
6
- enum: [auto]
7
- boolean
8
default: auto
9
description:
10
short: "Open links in an iframe preview overlay (`true`, `false`, or `auto`)"
11
long: |
12
Open links in an iframe preview overlay.
13
14
- `true`: Open links in iframe preview overlay
15
- `false`: Do not open links in iframe preview overlay
16
- `auto` (default): Open links in iframe preview overlay, in fullscreen mode.
17
18
- name: auto-play-media
19
tags:
20
formats: [revealjs]
21
schema:
22
enum: [null, true, false]
23
default: null
24
description: |
25
Autoplay embedded media (`null`, `true`, or `false`). Default is `null` (only when `autoplay`
26
attribute is specified)
27
28
- name: preload-iframes
29
tags:
30
formats: [revealjs]
31
schema:
32
enum: [null, true, false]
33
default: null
34
description:
35
short: "Global override for preloading lazy-loaded iframes (`null`, `true`, or `false`)."
36
long: |
37
Global override for preloading lazy-loaded iframes
38
39
- `null`: Iframes with data-src AND data-preload will be loaded when within
40
the `viewDistance`, iframes with only data-src will be loaded when visible
41
- `true`: All iframes with data-src will be loaded when within the viewDistance
42
- `false`: All iframes with data-src will be loaded only when visible
43
44
- name: view-distance
45
tags:
46
formats: [revealjs]
47
schema: number
48
default: 3
49
description: "Number of slides away from the current slide to pre-load resources for"
50
51
- name: mobile-view-distance
52
tags:
53
formats: [revealjs]
54
schema: number
55
default: 2
56
description: |
57
Number of slides away from the current slide to pre-load resources for (on mobile devices).
58
59
- name: parallax-background-image
60
tags:
61
formats: [revealjs]
62
schema: path
63
description: "Parallax background image"
64
65
- name: parallax-background-size
66
tags:
67
formats: [revealjs]
68
schema: string
69
description: "Parallax background size (e.g. '2100px 900px')"
70
71
- name: parallax-background-horizontal
72
tags:
73
formats: [revealjs]
74
schema: number
75
default: 200
76
description: "Number of pixels to move the parallax background horizontally per slide."
77
78
- name: parallax-background-vertical
79
tags:
80
formats: [revealjs]
81
schema: number
82
default: 50
83
description: "Number of pixels to move the parallax background vertically per slide."
84
85