http://devthought.com/wp-content/moo...show/demo.html
que como veis, tiene un checkbox para que se reproduzca o pare.
pero yo quiero que haya una imagen de play y otra de pause.
No se cómo crear una variable en javascript de modo que:
Si hago click en play, el valor de la variable sea TRUE.
Si hago click en Pause, sea FALSE.
Y que en el archivo .js uno de los atributos del slideshow dependa de si la variable es True o False.
El archivo .js tiene el siguiente código:
Cita:
GRACIAS ! window.addEvent('domready', function(){
$('option-auto').addEvent('click', function(){
slideshow.options.auto = document.getElementsByName('play').value;
});
new BarackSlideshow('menu', 'pictures', 'loading', {
transition: 'fade',
autostart: true,
auto: ESTO ES LO QUE QUIERO QUE SEA TRUE O FALSE
});
//the example above is only fitting for this demo, since we let the user pick the transition and turn auto on/off
//for most scenarios, it's only enough with:
//new BarackSlideshow('menu', 'pictures', 'loading', {transition: '<transition here>', auto: true});
//transitions can be 'slide-left', 'slide-right', 'slide-top', 'slide-bottom', 'fade'
});
$('option-auto').addEvent('click', function(){
slideshow.options.auto = document.getElementsByName('play').value;
});
new BarackSlideshow('menu', 'pictures', 'loading', {
transition: 'fade',
autostart: true,
auto: ESTO ES LO QUE QUIERO QUE SEA TRUE O FALSE
});
//the example above is only fitting for this demo, since we let the user pick the transition and turn auto on/off
//for most scenarios, it's only enough with:
//new BarackSlideshow('menu', 'pictures', 'loading', {transition: '<transition here>', auto: true});
//transitions can be 'slide-left', 'slide-right', 'slide-top', 'slide-bottom', 'fade'
});