そのスライダー FancyTransitions は、ランダム効果をサポートしていません。effect: 'curtain'
そのため、「curtain」、「zipper」、または「wave」のいずれかの値をランダムにする必要があります。より良い回避策がない限り。
<script type="text/javascript">
$(document).ready( function(){
$('#slideshowHolder').jqFancyTransitions({
width: 500, // width of panel
height: 333, // height of panel
strips: 10, // number of strips
delay: 4000, // delay between images in ms
stripDelay: 50, // delay beetwen strips in ms
titleOpacity: 0.7, // opacity of title
titleSpeed: 1000, // speed of title appereance in ms
position: 'alternate', // top, bottom, alternate, curtain
direction: 'random', // left, right, alternate, random, fountain, fountainAlternate
effect: 'curtain', // curtain, zipper, wave
navigation: false, // prev next and buttons
links : false // show images as links });
});
</script>