I am using jquery cycle to cycle through a large number of customer reviews, with a numbered pager and 6 items per page. My code is as follows:
<script type="text/javascript">
$(function() {
$('.reviews')
.before('<div id="banner-nav">')
.cycle({
fx:'fadeout',
timeout: 5000,
pager: '#banner-nav'
});
});
</script>
I need the reviews to be transparent (text only) as there is a background image that needs to be visible. The problem is that since jquery cycle does not hide inactive slides, I get an effect like the following:
Please see http://jsfiddle.net/7jok549x/ for an example
Can anyone suggest a fix for this?