Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 1st, 2012  |  syntax: None  |  size: 0.54 KB  |  hits: 7  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. jQueryrotate speed is too slow despite changing the duration setting
  2. $("#sanalista_words").hide();
  3. $("#sanalista>H2").click(function() {
  4.     if($("#sanalista_words").is(":visible")) {
  5.         $("#sanalista_words").slideUp("slow");
  6.         $("#sl_graph_arrow").rotate({
  7.             duration: 1,
  8.             angle: 180,
  9.             animateTo:1
  10.       });
  11.     }
  12.     else {
  13.         $("#sanalista_words").slideDown("slow");
  14.         $("#sl_graph_arrow").rotate({
  15.             duration: 1,
  16.             angle: 0,
  17.             animateTo:180
  18.       });
  19.  
  20.     }
  21. });