Well, I am using this jquery carousel plugin...and it works just fine (it has automatic carousel enabled), however I am trying to make it stop when any user runs a mouse over the carousel and then trying to resume where it left, after the mouse is out. I have not yet managed to do this, and I'm not even sure how to continue trying. This is my carousel code (since it's very long I'm just gonna place the first part, after all it repeats)...
<div id="expertos" class="carrusel_expertos">
<ul>
<li>
<img class="izq" id="fernandocavazos" height="88px" width="77px" src="assets/img/expertos/equipo7.jpg" alt="Dr. Fernando Cavazos" title="Dr. Fernando Cavazos<br /><br />
Director de Servicios Técnicos ABS América Latina<br />
Residencia: México<br />
Email: [email protected]<br />
Medico Veterinario - Universidad Nacional Autónoma, México <br />
Fisiología Reproductiva - Universidad de Edimburgo, Escocia<br />
<br />
Fernando esta a cargo de los programas de actualización para el equipo de servicios técnicos de América Latina. Sus áreas de especialización incluyen manejo reproductivo en ganado de leche y carne, procedimientos de ordeño y salud de la ubre, evaluación del confort e instalaciones y salud del hato.
" />
<ul id="textcontainer_der">
<li><div id="nombre_experto">Dr. Fernando Cavazos</div></li>
<li><div id="residencia_experto">México</div></li>
<li><div id="mail_experto">[email protected]</div></li>
</ul>
</li>
<li>
<img class="der" height="88px" width="77px" src="assets/img/expertos/equipo8.jpg" alt="Dr. Dr. Hernando López" />
<ul>
<li><div id="nombre_experto">Dr. Hernando López</div></li>
<li><div id="residencia_experto">USA</div></li>
<li><div id="mail_experto">[email protected]</div></li>
</ul>
</li>
<li>
<img class="izq" height="88px" width="77px" src="assets/img/expertos/equipo9.jpg" alt="Dr. Neil Michael" />
<ul id="textcontainer_der">
<li><div id="nombre_experto">Dr. Neil Michael</div></li>
<li><div id="residencia_experto">USA</div></li>
<li><div id="mail_experto">[email protected]</div></li>
</ul>
</li>
and here's the javascript that starts jCarousel
var carousel = $(function(){
$("div.carrusel_expertos").carousel({
direction: "vertical",
loop: true,
dispItems: 3,
nextBtn: "<span></span>",
prevBtn: "<span></span>",
autoSlide: true,
autoSlideInterval: 6000,
delayAutoSlide: 2000,
effect: "fade"
});
});
and here what I've tried to stop the already executing jCarousel with:
$(function() {
$('#expertos').mouseover(function() {
//$(this).stop();
$(this).die("mouseover",carousel);
}).mouseout(function() {
//$(this).carousel();
$(this).live("mouseout",carousel);
});
});