且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

自定义IPython笔记本/Jupyter幻灯片

更新时间:2023-02-14 11:00:27

Reveal.js实际上只是一个Web模板.如果要进一步自定义它,则需要CSS/Javascript知识.

Reveal.js is really just a web template. If you want to customize it further, CSS/Javascript knowledge will be required.

定义页眉/页脚的一种直接方法是更改​​CSS

A straightforward way to define header/footer is to change the CSS

.slides .header{
  position:absolute;
  top: -50%;
  left: -50%;
}
.slides .footer{
  position:absolute;
  bottom: 50%;
  left: -50%;
}

然后您可以插入页脚内容

You can then insert your footer contents

<div class="footer">
   <p>Copyright ACME Incorporated ©2016</p>
</div>