M2vH / galleriffic

Automatically exported from code.google.com/p/galleriffic
0 stars 0 forks source link

How to change click to mouseover for navigation "thumb"? #268

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Using examples 1 and 2
2. 'Click' on thumb change to 'mouseover' thumb
3.

What is the expected output? What do you see instead?
No change to output expected.

What version of the product are you using? On what operating system?
galleriffic-2.0 + jquery-1.7.1.min.js 

Please provide any additional information below.
The "slideshow" default appears on 'click'. How do I change this to appearon 
mouseover? Any help appreciated.

Original issue reported on code.google.com by francois...@gmail.com on 12 Feb 2012 at 9:22

GoogleCodeExporter commented 8 years ago
change 
$("a[rel='history']").live('click', function(e) {
if (e.button != 0) return true;

$("a[rel='history']").live('mouseover', function(e) {
if (e.button != 0) return true;

The problem that I have, is that when the mouse rolls over slideshow-container 
div then the pictures start to scroll on their own. It's annoying and I'm 
trying to figure out the issue.

Original comment by Sdover...@gmail.com on 29 Oct 2012 at 5:00

GoogleCodeExporter commented 8 years ago
check out this jQuery 
http://www.designchemical.com/lab/jquery/demo/jquery_demo_image_swap_gallery.htm

Original comment by benjamin...@gmail.com on 29 Oct 2012 at 5:14