• 26-05-2015, 19:14:26
    #1
    Merhabalar.
    Arkadaşlar,
    Bir türlü kaldıramadım bunu.
    http://armanhanz.hol.es/
    adresindeki,üstteki kırmızı butonlara mausu getirince arkaplanda farklı butonlar görünüyor. Onları kaldırmak istiyorum nasıl yapıcam bilgisi olan var mı?
  • 26-05-2015, 19:29:52
    #2
    <script type="text/javascript" src="uygulamalar/menu.js"></script>
    Bu kodu silin.
  • 26-05-2015, 20:36:24
    #3
    moss218 adlı üyeden alıntı: mesajı görüntüle
    <script type="text/javascript" src="uygulamalar/menu.js"></script>
    Bu kodu silin.
    Hocam o kodu kaldırınca, ilk baştaki açılır menüsü olan,
    Ürünlerimiz ve Hizmetleriniz butonu işlev görmüyor.

    *
    Menu.js Kodları budur;

    $(document).ready(function() {
        $(".menusiralamasi .menuler ul li").hover(function() {
            $(this).find("img").stop().animate({ opacity: 0 }, 400);
        },
    		function() {
    		    $(this).find("img").stop().animate({ opacity: 1 }, 400);
    		});
    
        $(".faqItem .faqTitle a").live("click",function() {
            var _index = $(".faqItem .faqTitle a").index(this);
            if ($(".faqItem").eq(_index).hasClass("active")) {
                $(".faqItem").eq(_index).removeClass("active")
                $(".faqItem .faqContent").eq(_index).slideUp("slow");
                return false;
            }
            $(".faqItem").each(function() {
                $(this).removeClass("active");
            })
            $(".faqContent").each(function() {
                $(this).slideUp("slow");
            })
            $(".faqItem").eq(_index).addClass("active");
            $($(".faqItem .faqContent").eq(_index)).slideToggle("slow");
            return false;
        })
    
        var timeoutSet = {};
        function clearMenu(target) {
            var that = $('#' + target);
            if (that.length <= 0)
                return;
            timeoutSet[target] = setTimeout(function() {
                that.hide();
            }, 200);
        }
    
        function showMenu(target) {
            var that = $('#' + target);
            if (that.length <= 0)
                return;
            clearTimeout(timeoutSet[target]);
            that.show();
        }
    
        $(".menusiralamasi .menuler ul li").hover(function() {
            var menu = $(this).attr('rel');
            if (menu == null || menu == undefined)
                return;
            showMenu(menu);
        },
    		function() {
    		    var menu = $(this).attr('rel');
    		    if (menu == null || menu == undefined)
    		        return;
    		    clearMenu(menu);
    		});
    
        $(".subMenuItem").hover(function() {
            var menu = $(this).attr('id');
            if (menu == null || menu == undefined)
                return;
    
            $('li[rel=' + menu + '] img').stop().animate({ opacity: 0 }, 0);
    
            showMenu(menu);
    
        }, function() {
            var menu = $(this).attr('id');
            if (menu == null || menu == undefined)
                return;
    
            clearMenu(menu);
            $('li[rel=' + menu + '] img').stop().animate({ opacity: 1 }, 400);
        })
    
    
    	
    
    });
  • 27-05-2015, 07:48:10
    #4
    Konu gunceldir