
Untitled
By: a guest on
Aug 1st, 2012 | syntax:
None | size: 0.54 KB | hits: 7 | expires: Never
jQueryrotate speed is too slow despite changing the duration setting
$("#sanalista_words").hide();
$("#sanalista>H2").click(function() {
if($("#sanalista_words").is(":visible")) {
$("#sanalista_words").slideUp("slow");
$("#sl_graph_arrow").rotate({
duration: 1,
angle: 180,
animateTo:1
});
}
else {
$("#sanalista_words").slideDown("slow");
$("#sl_graph_arrow").rotate({
duration: 1,
angle: 0,
animateTo:180
});
}
});