だから、ここで少し問題があります:)
jQuery TOOLSを使用して、きちんとした小さなスクロール可能なギャラリーを作成しています。相関ナビゲーターをスクロール可能な div から1 ノード離しすぎるまで、完全に正常に機能しました。
Aaand..今、彼らはもうお互いに話したくありません。
ここで、コードを使用します。
<section>
<div class="scrollable">
<div class="gallery_items">
<div class="gallery"><!-- Stuff goes here --></div>
<div class="gallery"><!-- the rest of it here --></div>
</div>
</div>
</section>
<footer>
<div class="navigation">
<a href="#1">1</a>
<a href="#2">2</a>
</div>
</footer>
<script type="text/javascript">
$('.scrollable').scrollable({
circular: false, keyboard: false
}).navigator({
navi: '.navigation', naviItem: 'a'
});
</script>
フッター ナビゲーションを接続してスクロールできるようにする方法はありますか? :)
敬具、ドイツのパクナ!