基本的に、そこのjfiddleは何が起こっているかを表示します。画像の周囲にスパンタグを使用して、スライダーの画像の下にあるテキストフィールドを有効にし、画像に合わせてテキストを変更できるようにしました。動作しますが、壊れたポケットベルとしてサムネイルを使用しています。
スパンタグを配置してそれらを機能させる方法はありますか?
編集-私が私のページを使用しているjs:
<script type="text/javascript">
$(document).ready(function() {
$('.slideshow')
.cycle({
fx: 'fade', speed: 2500, pause: 1, next: '#next',
prev: '#prev', pager: '#pagernav',
// callback fn that creates a thumbnail to use as pager anchor
pagerAnchorBuilder: function(idx, slide) {
return '<a href="#"><img src="' + $(slide).attr('rel') + '" width="50" height="26" /></a>';
}
});
$('#pauseButton').click(function() {
$('.slideshow').cycle('pause');
});
$('#resumeButton').click(function() {
$('.slideshow').cycle('resume');
});
});
</script>