Hi all- is there anyway to recreate a hover gallery like this without being too time consuming as i have many images to get through?
https://sea.banggood.com/th/BOYUEDA-28_ ... rehouse=CN
thanks
hover gallery
Forum rules
IMPORTANT NOTE!!
DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.
PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
IMPORTANT NOTE!!
DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.
PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
Re: hover gallery
This can be done with a slideshow and events. Where the thumbnails are standard images which control the activate image in the slideshow.
Or else:
http://www.wysiwygwebbuilder.com/unitegallery.html
Or else:
http://www.wysiwygwebbuilder.com/unitegallery.html
Re: hover gallery
Hi Pablo
Is there an example somewhere where I can find a way of doing this with a slideshow and events?
Cheers
Is there an example somewhere where I can find a way of doing this with a slideshow and events?
Cheers
Re: hover gallery
It works something like this:
Step 1
Add a slideshow, set the pause time to '0'
Step 2
Add an image object (or any other object with event support)
Step 3
- Add an 'onmouseenter' event to the image
- action: run javascript'
- javascript:
where SlideShow1 is the ID of the slideshow.
goto,1 jumps to the first slide
goto,2 jumps to the second slide.
etc...
Step 1
Add a slideshow, set the pause time to '0'
Step 2
Add an image object (or any other object with event support)
Step 3
- Add an 'onmouseenter' event to the image
- action: run javascript'
- javascript:
Code: Select all
$('#SlideShow1').slideshow('goto,1');
goto,1 jumps to the first slide
goto,2 jumps to the second slide.
etc...