我想在一个slide.js演示文稿的幻灯片右侧有一个背景图像.
<section data-background="myImage.jpg"> // content </section>
如何添加CSS样式使其出现在屏幕的右边缘?
解决方法
This article helped to find the solution.您可以为当前部分的html元素添加样式
data-state="something"
当然,您可以使用该风格调整您的CSS.所以我用这个html:
<section data-background="myImage.jpg" data-state="img-right"> // content </section>
和以下css:
html.img-right div.slide-background.present { background-position: right; }