Desactivar animación Jquery Accordion
Frecuentes
Visto 3,911 veces
3
How can i turn off the animation effect on this accordion? so that when I click the sections it just opens instantly, rather than slow drop down?
www.immateriallabour.com/EBH-Pub
<script>
$(function() {
$( "#accordion" ).accordion({
collapsible: true
});
({ animate: false });
});
</script>
1 Respuestas
6
If you want to prevent the accordion animation, you should pass the appropriate property as part of the configuration object, as follows:
$(function () {
$("#accordion").accordion({
collapsible: true,
animate: false
});
});
Respondido el 10 de Septiembre de 13 a las 00:09
No es la respuesta que estás buscando? Examinar otras preguntas etiquetadas jquery user-interface jquery-animate accordion or haz tu propia pregunta.
To open accordions instantly is sign of a poor UI which leads to a poor UX - Roko C. Buljan
I agree, but the person I'm building the site for insists. - Ben Vickers