This is exactly what I'm looking to do...but would really like to use the most recent version of the tools. Anyone have something similar to this using the most recent code?
Forum user: greggo
Basic information
| Registered | Jul 28, 2009 |
| Last login | May 13, 2010 |
| Forum posts | 3 |
| Direct URL | http://www.flowplayer.org/forum/users/13588 |
Latest forum posts
I have the following code which was working before and no longer is with v1.2.2
<script language="JavaScript">
// What is $(document).ready ? See: http://flowplayer.org/tools/documentation/basics.html#document_ready
$(function() {
$(".slidetabs").tabs(".images > div", {
// enable "cross-fading" effect
effect: 'fade',
fadeOutSpeed: "slow",
// start from the beginning after the last tab
rotate: true
// use the slideshow plugin. It accepts its own configuration
}).slideshow({ autoplay: true, interval: 10000});
});
</script>
Rather than
div.panes div { display:none; etc... } for the pane styling, use
div.panes > div { display:none; etc... }
and it will only apply to the first div in a pane.
div.panes div { display:none; etc... } for the pane styling, use
div.panes > div { display:none; etc... }
and it will only apply to the first div in a pane.