Hi Josh,
Looks like I’m heading in the right direction, but there’s still some fine tuning to do (https://www.schenkz.nl/voorbeeld-pagina/):
– I can’t get the text boxes (.slider_content) to display long enough
As far as I know this must have something to do with setting the fade speed and/or play interval, but I haven’t got a clue on how/where to do that.
Any suggestions?
So far I’ve altered the code in the slideshow.js like this:
—————————————————————-
// Get the slideshow options
var $slidespeed = parseInt( meteorslidessettings.meteorslideshowspeed );
var $slidetimeout = parseInt( meteorslidessettings.meteorslideshowduration );
var $slideheight = parseInt( meteorslidessettings.meteorslideshowheight );
var $slidewidth = parseInt( meteorslidessettings.meteorslideshowwidth );
var $slidetransition = meteorslidessettings.meteorslideshowtransition;
var $captionduration = $slidetimeout – ($slidespeed*2);
// Setup jQuery Cycle
$j(‘.meteor-slides’).cycle({
before: function (currSlideElement, nextSlideElement) {
$j(currSlideElement).find(‘.slider_content’).delay(500).fadeIn(1000).fadeOut(500);
$j(nextSlideElement).find(‘.slider_content’).delay(500).fadeIn(1000).fadeOut(500);
},
cleartypeNoBg: true,
fit: 1,
fx: $slidetransition,
height: $slideheight,
next: ‘#meteor-next’,
pager: ‘#meteor-buttons’,
pagerEvent: ‘click’,
pause: 1,
prev: ‘#meteor-prev’,
slideExpr: ‘.mslide’,
speed: $slidespeed,
timeout: $slidetimeout,
width: $slidewidth
});
——————————————————————
More help would be appreciated.
Kind regards, Edwin