jquery cycle slideshow dots on slides
hello - i try now for days to success - but it don't works ;-(
i use the danland theme from drupal and have configured a slideshow… i only want to the dots on slideshow images (middle / bottom) so people can click through the slideshow… so far i tried mostly every example that i found on google… pager, pagination, etc…
maybe you guys could advise me or help to get these "dots, bullets" please??? below you will find my script, html and css…
Script:
- jQuery(document).ready(function($) {
- $('.slideshow').cycle({
- fx: 'all' ,
- timeout: 8000,
- delay: 2000,
- pager: '#slide-pager',
- pagerEvent: 'mouseover',
- pauseOnPagerHover: true,
- pagerAnchorBuilder: function paginate(idx, el) {
- return '<a class="nav' + idx + '" href="#" >•</a>';
- }
- });
CSS:
- #nav {
- width: 950px; /* to match width of .slideshow p */
- margin: auto;
- position: absolute;
- left: 10px;
- bottom: 20px; /* would normally be zero, but adding in 5px from #nav a + additional 5px for "padding" */
- z-index: 10000;
- }
HTML:
- <?php if($is_front): ?>
- <div id="slideshow-wrapper">
- <div class="slideshow-inner">
- <div id="slideshow-preface">
- <div id="slide-pager-wrapper">
- <div id="slide-pager"></div>
- </div>
- <?php if ($page['preface']): ?>
- <div id="preface">
- <?php print render ($page['preface']); ?>
- </div><!-- end preface -->
- <?php endif; ?>
- </div>
- <?php if ($page['highlighted']) : ?><div id="slideshow-bottom">
- <div id="mission"><?php print render ($page['highlighted']); ?></div></div><?php endif; ?>
- <div class="slideshow">
- <img src="<?php print $base_path . $directory; ?>/images/slideshows/objectflor-vinylboden.jpg" width="950" height="355" alt="slideshow 1"/>
- <img src="<?php print $base_path . $directory; ?>/images/slideshows/objectflor-buero.jpg" width="950" height="355" alt="slideshow 2"/>
- <img src="<?php print $base_path . $directory; ?>/images/slideshows/objectflor-wohnen.jpg" width="950" height="355" alt="slideshow 3"/>
- <img src="<?php print $base_path . $directory; ?>/images/slideshows/objectflor-schlafzimmer.jpg" width="950" height="355" alt="slideshow 3"/>
- <img src="<?php print $base_path . $directory; ?>/images/slideshows/malerarbeiten.jpg" width="950" height="355" alt="slideshow 3"/>
- <img src="<?php print $base_path . $directory; ?>/images/slideshows/pantone.jpg" width="950" height="355" alt="slideshow 3"/>
- </div>
- </div>
- </div>
- <?php endif; ?>
I would be so thankfull if you could help me ;-) ty and greets from germany….