新しいクラスとそれらを参照するスクリプトを手動で作成せずに、すべて同じページにある複数のjqueryサイクルスライドショーに複数のページャーを関連付ける方法を理解しようとしています。
私のHTMLは次のようになります。
<!-- PROJECT -->
<div title="Challenge Factor" class="project">
<div class="projectinfo-top">
<div class="project-title"><h2>Challenge Factor</h2></div>
<div class="bulletnav"></div>
</div>
<div class="minislideshow-bg">
<div class="minislideshow">
<img src="project-slides/challengefactor-1.jpg" width="729" height="425" alt="Challenge Factor" />
<img src="project-slides/challengefactor-2.jpg" width="729" height="425" alt="Challenge Factor" />
<img src="project-slides/challengefactor-3.jpg" width="729" height="425" alt="Challenge Factor" />
<img src="project-slides/challengefactor-4.jpg" width="729" height="425" alt="Challenge Factor" />
</div>
</div>
<div class="projectinfo-text">
<p>ChallengeFactor.com is a new social network based on user created challenges that push members to better themselves and the lives around them. Webphibian was contacted to develop the social network from scratch and tie it into Challenge Factor's current branding. My role on this project was to design the social network side of the site, redesign their current site, and all front-end development.</p>
</div><!--/project info text-->
</div><!--/PROJECT-->
私のJqueryはのように見えます。
$(function() { $('.minislideshow').cycle({ timeout: 0, pager:'.bulletnav' }); });
複数のプロジェクトがリストされており、それぞれに独自のスライドショーdiv.minislideshowがあります。各プロジェクトインスタンスのdiv.bulletnav内にページャーリンクを配置したいと思います。
どんな助けでも大歓迎です。さらに情報が必要な場合は、私に知らせてください。ありがとう。