Hide Show animate with Jquery: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
No edit summary
No edit summary
Line 31: Line 31:
      
      
   $("#drei").animate({height:"toggle",opacity:"toggle"},"slow");
   $("#drei").animate({height:"toggle",opacity:"toggle"},"slow");
   $("#eins").fadeToggle( 400 );
   '$("#eins").fadeToggle( 400 );
    
   '$("#eins").slideToggle( 1000 );


End Function
End Function

Revision as of 23:11, 20 September 2013


Sub Main()
  Dim sInhalt
  HTMLview1.innerHTML=""
  sInhalt =  ""
  sInhalt +=""
    sInhalt +=""
  sInhalt +=""
  sInhalt +=""
  sInhalt +="

Bestellen

Hauptmenu

Bestellen

" HTMLview1.innerHTML = sInhalt HTMLview1.refresh() End Sub Function Button5_onclick() '$("#eins").toggle( "slow" ); $("#eins").hide("slow"); $("#zwei").hide("slow" ); $("#Button7").hide("slow" ); $("#Button8").hide("fast" ); End Function Function Button6_onclick() $("#eins").show("slow"); $("#zwei").show("slow"); $("#Button7").show("slow"); $("#Button8").show("slow"); $("#drei").animate({height:"toggle",opacity:"toggle"},"slow"); '$("#eins").fadeToggle( 400 ); '$("#eins").slideToggle( 1000 ); End Function