• 08-01-2011, 13:51:04
    #1
    Mrb Arkadaşlar Benim Bu Her 2 Kodu Kulanmam Gerekior Ama Bir Birleri İle Çakışıyor Ve Çalışmıyorlar
    <script type="text/javascript">
    
    $(document).ready(function() {	
    
    
      //Get all the LI from the #tabMenu UL
      $('#tabMenu > li').click(function(){
            
        //remove the selected class from all LI    
        $('#tabMenu > li').removeClass('selected');
        
        //Reassign the LI
        $(this).addClass('selected');
        
        //Hide all the DIV in .boxBody
        $('.boxBody div').slideUp('1500');
        
        //Look for the right DIV in boxBody according to the Navigation UL index, therefore, the arrangement is very important.
        $('.boxBody div:eq(' + $('#tabMenu > li').index(this) + ')').slideDown('1500');
        
      }).mouseover(function() {
    
        //Add and remove class, Personally I dont think this is the right way to do it, anyone please suggest    
        $(this).addClass('mouseover');
        $(this).removeClass('mouseout');   
        
      }).mouseout(function() {
        
        //Add and remove class
        $(this).addClass('mouseout');
        $(this).removeClass('mouseover');    
        
      });
    
      //Mouseover with animate Effect for Category menu list
      $('.boxBody #category li').mouseover(function() {
    
        //Change background color and animate the padding
        $(this).css('backgroundColor','#888');
        $(this).children().animate({paddingLeft:"20px"}, {queue:false, duration:300});
      }).mouseout(function() {
        
        //Change background color and animate the padding
        $(this).css('backgroundColor','');
        $(this).children().animate({paddingLeft:"0"}, {queue:false, duration:300});
      });  
    	
      //Mouseover effect for Posts, Comments, Famous Posts and Random Posts menu list.
      $('.boxBody li').click(function(){
        window.location = $(this).find("a").attr("href");
      }).mouseover(function() {
        $(this).css('backgroundColor','#888');
      }).mouseout(function() {
        $(this).css('backgroundColor','');
      });  	
    	
    });
    
    </script>
    Bu Kod İle

    <script type="text/javascript">
    
    jQuery(document).ready(function() {
        jQuery('#mycarousel').jcarousel({
            vertical: true,
            scroll: 2
        });
    });
    
    </script>
    şimdiden teşekkürler
  • 08-01-2011, 16:17:26
    #2
    Kimlik doğrulama veya yönetimden onay bekliyor.
    ikinci koddakş şu kısmı
     jQuery('#mycarousel').jcarousel({
            vertical: true,
            scroll: 2
        });
    al birinci koddaki en alttaki şu kodların üstüne yapıştır
    });
    
    </script>
  • 08-01-2011, 16:28:02
    #3
    neyse haletim sağol genede