hi developers
i did and it says : flash for flash based slideshow (requires Flowplayer.)
"Flowplayer" is it already instaled in " nightly build " ???
i did set it up on " flash " but still not working and when i choose slideshow for the images nothing shows .
thanks
Sorry, you are right, the positioning of the controls is CSS but the hover is javascript/ajax. That part of the code is
`$('#slideshow').hover(
function() { $('#controls').fadeIn(); },
function() { $('#controls').fadeOut(); }
); in thezp-core/plugins/slideshow.php` file. I have adapted that code from the site of the jQuery Cycle plugin which runs the jQuery slideshow mode. See there about it's options: http://www.malsup.com/jquery/cycle/
Feel free to change as you like. But keep in mind that every update will probably overwrite your changes if you don't backup them. I will not change anything about that now.
Flowplayer needs to be activated and the slideshow mode set to flash.
hi acrylian
so lets say i want to make the " slideshow / controls " permanent
what should i change in this :
$('#slideshow').hover(
function() { $('#controls').fadeIn(); },
function() { $('#controls').fadeOut(); }
);
should i remeve it from the : zp-core/plugins/slideshow.php ??
hi acrylian
http://www.malsup.com/jquery/cycle/
i could not get any answer from this link about my question.
because all i need is in the : slideshow/nightly
the control appers only when the mouse over the image than u can click next prev pause or what ever
what i am trying to do is making this controll always showing instead of only the mouse over the image for it to show.
visitors may get confused and they may say how can i go next or previous ??? how they can figure it out that they have to put the mouse over the image so they can see the control
hi developers
http://www.malsup.com/jquery/cycle/
i could not get any answer from this link about my question.
because all i need is in the : slideshow/nightly
the control appers only when the mouse over the image than u can click next prev pause or what ever
what i am trying to do is making this controll always showing instead of only the mouse over the image for it to show.
visitors may get confused and they may say how can i go next or previous ??? how they can figure it out that they have to put the mouse over the image so they can see the control
I have understood what you want. As I said above I have adapted the code from the page I posted above (exactly from here http://www.malsup.com/jquery/cycle/hover.html). I liked the idea that the controls do not "disturb" watching the images and just fade in if needed. I am used to that from a lot of movie programs. You could simply write a sentence "Hover over image for controls". Otherwise you will probably hover over the image sometime and see the controls.
Anyway, have you tried the simplest that comes to mind and removed the code in question? This would be what I would try first...
hi acrylian
did u mean delete this part from : zp-core/plugins/slideshow.php ???
$('#slideshow').hover(
function() { $('#controls').fadeIn(); },
function() { $('#controls').fadeOut(); }
);
if no, this sentence "Hover over image for controls". where it should be than ??
in other words how the above code should be writting?
hi acrylian
sorry about that mess
i am not realy good when it comes to codes.
now, i thing this is the code who control the " slide show control button"
could u wtite it again for me pls in the way that the " slide show control button" stay permenant and not fade away.
$(function() {
$('#pause').click(function() { $('#slides').cycle('pause'); return false; });
$('#play').click(function() { $('#slides').cycle('resume'); return false; });
$('#slideshow').hover(
function() { $('#controls').fadeIn(); },
function() { $('#controls').fadeOut(); }
);
$('#slides').cycle({
fx: '',
speed: ,
timeout: ,
next: '#next',
prev: '#prev',
delay: 2000,
startingSlide:
});
});