
Originally Posted by
jscheuer1
I think I may have heard about this issue or seen some evidence of it once. However, it would be much easier for me to help you if you could put up a demo of the problem. That way I don't have to guess at all of your settings and set up a slideshow complete with images, not to mention what your click function is.
Set something like that up and provide a link to it and I'll see what I can do.
Hi there I just found this page from a search engine and I'm having the same issue. I can get the click to pause to work or the mouse over to pause to work... but not both together.
http://artsonline.arts.monash.edu.au...e-problem.html
Code:
<!DOCTYPE html>
<html>
<head>
<title>JQuery Cycle Plugin - Pause Vs Pause Problem</title>
<style type="text/css">
#slideshow { left: 20px }
#slideshow .pane { margin: 10px; padding: 10px; border: 1px solid #666; }
#slideshow .pane .pauseButton, #slideshow .pane .resumeButton, #slideshow .pane .pauseButton:link, #slideshow .pane .resumeButton:link { display:block; padding: 5px; color: #fff; background-color: #666; margin: 2px 0px; border: 1px solid #000;}
</style>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js">></script>
<script type="text/javascript" src="http://malsup.github.com/chili-1.7.pack.js"></script>
<script type="text/javascript" src="http://cloud.github.com/downloads/malsup/cycle/jquery.cycle.all.2.72.js"></script>
<script type="text/javascript" src="http://malsup.github.com/jquery.easing.1.1.1.js"></script>
<script type="text/javascript">
jQuery(function($){
$('#slideshow').cycle({
fx: 'fade',
speed: 'fast',
timeout: 1000,
pause: 1
});
$('.pauseButton').click(function(){
$('#slideshow').cycle('pause');
});
$('.resumeButton').click(function(){
$('#slideshow').cycle('resume');
});
});
</script>
</head>
<body>
<div id="main">
<div id="slideshow" class="pics">
<div class="pane"><a class="pauseButton" href="#">Pause</a><a class="resumeButton" href="#">Resume</a><img src="http://cloud.github.com/downloads/malsup/cycle/beach1.jpg" width="200" height="200" /></div>
<div class="pane"><a class="pauseButton" href="#">Pause</a><a class="resumeButton" href="#">Resume</a><img src="http://cloud.github.com/downloads/malsup/cycle/beach2.jpg" width="200" height="200" /></div>
<div class="pane"><a class="pauseButton" href="#">Pause</a><a class="resumeButton" href="#">Resume</a><img src="http://cloud.github.com/downloads/malsup/cycle/beach3.jpg" width="200" height="200" /></div>
<div class="pane"><a class="pauseButton" href="#">Pause</a><a class="resumeButton" href="#">Resume</a><img src="http://cloud.github.com/downloads/malsup/cycle/beach4.jpg" width="200" height="200" /></div>
<div class="pane"><a class="pauseButton" href="#">Pause</a><a class="resumeButton" href="#">Resume</a><img src="http://cloud.github.com/downloads/malsup/cycle/beach5.jpg" width="200" height="200" /></div>
<div class="pane"><a class="pauseButton" href="#">Pause</a><a class="resumeButton" href="#">Resume</a><img src="http://cloud.github.com/downloads/malsup/cycle/beach6.jpg" width="200" height="200" /></div>
<div class="pane"><a class="pauseButton" href="#">Pause</a><a class="resumeButton" href="#">Resume</a><img src="http://cloud.github.com/downloads/malsup/cycle/beach7.jpg" width="200" height="200" /></div>
<div class="pane"><a class="pauseButton" href="#">Pause</a><a class="resumeButton" href="#">Resume</a><img src="http://cloud.github.com/downloads/malsup/cycle/beach8.jpg" width="200" height="200" /></div>
</div>
</div>
</body>
</html>
Bookmarks