xaringan series
gadenbuie opened this issue · 1 comments
gadenbuie commented
- xaringan -> powerpoint
- xaringan slides from templates
- xaringan auto-advance/rotating slides
- hosting xaringan slides on github/netlify
- logos on all slides
- xaringan with sounds on transition
gadenbuie commented
logos on slides
<!-- insert-logo.html -->
<style>
.logo {
background-image: url(figures/moffittlogo.png);
background-size: contain;
background-repeat: no-repeat;
position: absolute;
bottom: 0%;
left: 2%;
width: 152px;
height: 53px;
z-index: 0;
}
</style>
<script>
document.querySelectorAll('.remark-slide-content:not(.hide-logo)').forEach(el => {
el.innerHTML += '<div class="logo"></div>';
});
</script>
output:
xaringan::moon_reader:
includes:
after_body: insert-logo.html