Orbit スライダーを使用しており、コードで指定された順序ではなく、画像コレクションからランダムに選択された最初の画像を表示したいと考えています。
以下は、スライダーと私のコードへのリンクです。http://zurb.com/playground/orbit-jquery-image-slider
jQuery
$(window).load(function () {
$('#featured').orbit();
});
HTML
<div id="featured">
<a href="1.php" data-caption="#htmlCaption1" target="_parent">
<img src="/images/image1.jpg" border="0" />
</a>
<a href="2.php" data-caption="#htmlCaption2" target="_parent">
<img src="/images/image1.jpg" border="0" />
</a>
<a href="3.php" data-caption="#htmlCaption3" target="_parent">
<img src="/images/image1.jpg" border="0"/>
</a>
</div>
<span class="orbit-caption" id="htmlCaption1"> Text here.</span>
<span class="orbit-caption" id="htmlCaption2"> Text here.</span>
<span class="orbit-caption" id="htmlCaption3"> Text here.</span>