Emre Çamalan'ın Kişisel Güncesi

Ben, sen sen olduğun için, benim!

javascript

Jquery ile …

<script language=”javascript” type=”text/javascript”> $(document).ready(function() {  $(“#tab1”).click(function(){   $(“#uye_olmayan”).show();   $(“#uye_olan”).hide();   $(“#tab1”).css(“background-color”,”#857d56″);   $(“#tab2”).css(“background-color”,”transparent”);   $(“#tab1”).css(“color”,”#FFF”);   $(“#tab2”).css(“color”,”#857d56″);  });  $(“#tab2”).click(function(){   $(“#uye_olan”).show();   $(“#uye_olmayan”).hide();   $(“#tab1”).css(“background-color”,”transparent”);   $(“#tab2”).css(“background-color”,”#857d56″);   $(“#tab1”).css(“color”,”#857d56″);   $(“#tab2”).css(“color”,”#FFF”);  });  $(“.acilir”).hover(function(){$(this).animate({height:90},400)},function(){$(this).animate({height:40},400)});  $(“.acilir input”).focus(function(){$(this).parents(“.acilir”).animate({height:90},400)});  $(“.acilir input”).blur(function(){$(this).parents(“.acilir”).animate({height:40},400)}); }); </script> Bu kod neler yaptı inanamazsınız akordiyon gibi sitenin “acilir” adındaki classlarının bulundugu divleri açıp kapatıyor ama belirli bir hızda 400ms

, ,