-
I was wondering if it's possible to tweak my CSS to replicate what Beamer overlays do with fragmented list, i.e. make upcoming items are half visible: I think marpit doesn't actually generate multiple |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Because Marpit framework itself does have no opinions about how to control fragmented list, styling is also depending on the higher level app. Many Marp users are using Marp CLI's bespoke template, which is a practical refference implementation of HTML. In this case, you can style hidden items by below snippet: <style>
[data-bespoke-marp-fragment="inactive"] {
visibility: visible !important;
opacity: 0.25;
}
</style> |
Beta Was this translation helpful? Give feedback.
Because Marpit framework itself does have no opinions about how to control fragmented list, styling is also depending on the higher level app.
Many Marp users are using Marp CLI's bespoke template, which is a practical refference implementation of HTML. In this case, you can style hidden items by below snippet: