• 12-04-2013, 02:31:57
    #1
    Reveloper
    Her yerde ççalışıyor bi benim sitemde çalışmıyor

    http://burtinet.com/tutkureklam.com/#

    sağ taraftaki şey arkadaşlar hepsi birden çıkıyo gelince tiklatindir.com 'daki ne güzel çalışıyo
  • 15-04-2013, 15:50:58
    #2
    Kimlik doğrulama veya yönetimden onay bekliyor.
    common.css icerisindeki #govde * icinde bulunan margini sil calisir.
  • 15-04-2013, 15:54:42
    #3
    edit
  • 21-04-2013, 13:35:21
    #4
    Kimlik doğrulama veya yönetimden onay bekliyor.
    Burti adlı üyeden alıntı: mesajı görüntüle
    Her yerde ççalışıyor bi benim sitemde çalışmıyor

    http://burtinet.com/tutkureklam.com/#

    sağ taraftaki şey arkadaşlar hepsi birden çıkıyo gelince tiklatindir.com 'daki ne güzel çalışıyo
    Hepsini aynı divin içine koymuşsunuz. şoyle yaparsanız sorun düzelir.
    <div id="takip1">
    <div class="facebook takip" onclick="location.href='http://www.facebook.com/TmaReklam'" style="width: 42px;"/></div>
    <div id="takip2">
    <div class="twitter takip" onclick="location.href='http://www.twitter.com/TmaReklam'" style="width: 42px;"/></div>
    <div id="takip3">
    <div class="youtube takip" onclick="location.href='http://www.youtube.com/TmaReklam'" style="width: 42px;"/></div>
    jquery kodunuzuda şöyle yapın

    <script type="text/javascript">
    $(document).ready(function(){
    $(".takip1").mouseover(function(){
           $(this).filter(':not(:animated)').animate({width:135},{duration:500});
    });
    $(".takip1").mouseout(function(){
    	$(this).animate({width:42});
    });
    $(".takip2").mouseover(function(){
           $(this).filter(':not(:animated)').animate({width:135},{duration:500});
    });
    $(".takip2").mouseout(function(){
    	$(this).animate({width:42});
    });
    $(".takip3").mouseover(function(){
           $(this).filter(':not(:animated)').animate({width:135},{duration:500});
    });
    $(".takip3").mouseout(function(){
    	$(this).animate({width:42});
    });
    });
    </script>
  • 21-04-2013, 15:56:53
    #5
    Burak kardeşim senin için ve benzer bir kod arayan diğer arkadaşlar için örnek hazırladım. http://jsfiddle.net/7UMSE/

    -