navigation in pagination #158
Answered
by
yhatt
ChiMaoShuPhy
asked this question in
Q&A
-
Hello, I am wondering if there is a convenient way (without javascript involving) to enable navigation in pagination on every slide? so that one can quickly jump to other slides, like in https://www.w3schools.com/w3css/w3css_pagination.asp many thanks! |
Beta Was this translation helpful? Give feedback.
Answered by
yhatt
Sep 2, 2021
Replies: 1 comment 3 replies
-
Marp slides are designed for the slide deck like a PowerPoint so we have no support for a page list that is not common in the slide deck. However, you can set page links into the footer manually just like below:
Set Styling example: <style>
footer a {
background: #fff;
border: 1px solid #000;
box-sizing: border-box;
color: #000 !important;
display: inline-block;
height: 1.5em;
line-height: 1;
padding: 0.25em;
text-align: center;
text-decoration: none;
width: 1.5em;
}
</style> |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
ChiMaoShuPhy
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Marp slides are designed for the slide deck like a PowerPoint so we have no support for a page list that is not common in the slide deck.
However, you can set page links into the footer manually just like below:
Set
href
to the anchor to specific page number.Styling example: