diff options
author | Hakim El Hattab <hakim@squarespace.com> | 2013-06-04 20:15:19 +0200 |
---|---|---|
committer | Hakim El Hattab <hakim@squarespace.com> | 2013-06-04 20:15:19 +0200 |
commit | 15f24f7a9a4b9629b3d6054bd0ef199eaee8c4c6 (patch) | |
tree | 4abc3a7afc0d4b0397a742f22f6983636ed08583 /test | |
parent | c11e8f624f34729363cc35d5a083476c356e824a (diff) | |
download | fosdem-2018-presentation-15f24f7a9a4b9629b3d6054bd0ef199eaee8c4c6.tar fosdem-2018-presentation-15f24f7a9a4b9629b3d6054bd0ef199eaee8c4c6.tar.gz |
linear sliding transition option for full page backgrounds (#453)
Diffstat (limited to 'test')
-rw-r--r-- | test/background.html | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/test/background.html b/test/background.html index 409d2cc..42689f3 100644 --- a/test/background.html +++ b/test/background.html @@ -19,11 +19,11 @@ <div class="slides"> <section data-background="#00ffff"> - <h2>data-background: #00ff00</h2> + <h2>data-background: #00ffff</h2> </section> - <section data-background="#0000ff"> - <h2>data-background: #0000ff</h2> + <section data-background="#bb00bb"> + <h2>data-background: #bb00bb</h2> </section> <section> @@ -74,7 +74,11 @@ controls: true, progress: true, history: true, - center: true + center: true, + + transition: 'linear', + // transitionSpeed: 'slow', + // backgroundTransition: 'linear' }); </script> |