Setting a per slide background either through URL, #hex, rgba() and hsl() properties is easy! Just use data attribute data-background. Parallax backgrounds are also supported on your presentation. It is a JavaScript option so you cannot use HTML attributes to set this, but the Theme Settings dialog box. Below you can see a background image being used as a parallax background.
|
1 2 3 4 |
<section data-background="#5b4592"> </section> <section data-background="rgba(206, 72, 103, 0.5)"> </section> <section data-background="hsl(257, 36, 42)"> </section> <section data-background="http://mysite/image.jpg"> </section> |