1

这里的问题是我点击主导航链接它动画左侧的主要内容,但我点击相同的链接两次内容消失。任何人请帮助我:

这是链接http://mannatstudio.com/animation/

这是我正在使用的代码:

var tab, lasttab;
var defaultTab = '#profile-tab';
var direction = "rtl"; // Right To Left

$('.tab').hide();

function showTab(id) {
    id = id.replace("-tab", "");
    //window.location.hash = id;

    if (tab) {
        direction = (tab.attr('data-index') < $(id + "-tab").attr('data-index')) ? "rtl" : "ltr";
        lasttab = tab;
        lasttab.animate({
            'margin-left': (direction == "rtl") ? -0 - $(window).width() : -0 + $(window).width(),
            opacity: 1
        }, 1000, "easeInOutExpo", function () {
            $(this).hide();
        });

        if (tab.attr('id') == "team-tab") {
            $('#members-tab').animate({
                'margin-left': $(window).width(),
                opacity: 1
            }, 1000, "easeInOutExpo", function () {
                $(this).hide();
                $(this).unbind('click');
            });
        }
    }


    $('.nav').find('.current').removeClass('current');
    $('a[href="' + id + '"]').parent().addClass('current').prev().css('');

    tab = $(id + "-tab");
    tab.css({
        'margin-left': (direction == "rtl") ? -0 + $(window).width() : -0 - $(window).width(),
        opacity: 1
    }).show().animate({
        'margin-left': 0,
        opacity: 1,
    }, 1000, "easeInOutExpo");

    if (id == "#team") {
        $('#members-tab').css({
            'margin-left': $(window).width()
        }).show().animate({
            'margin-left': 0
        }, 1000, "easeInOutExpo").find('.tab').show();

    }

    setFooterY();
}

function setFooterY() {
    var h = tab.height() + 150 + 0;

    if (tab.attr('id') == "team-tab") {
        $('#members-tab').height($('#members-tab').find('.page').height() + 0);
        h += $('#members-tab').height() - 0;
    }

    $('#content').height(h);
    $('#vignettage').height(0 + h);
}

if ($('.nav').length > 0 && $('#news-page').length == 0) {
    $('.nav').on('click', 'a', function (e) {
        e.preventDefault();
        showTab($(e.target).attr('href'));

    });

    if (window.location.hash != "") {
        showTab(window.location.hash);
    } else {
        showTab(defaultTab);
    }

    $(document).ready(function () {
        setTimeout(setFooterY, 500);
    });
}
4

3 回答 3

0

我认为您应该在为其中的任何内容设置动画之前检查函数中的lasttabandtab变量。showTab

下面的代码用于showTab检查下面标记的更改//changed

function showTab(id) {
  id = id.replace("-tab", "");
  //window.location.hash = id;

  if (tab) {
    direction = (tab.attr('data-index') < $(id + "-tab").attr('data-index')) ? "rtl" : "ltr";
    lasttab = tab;
    lasttab.animate({
        'margin-left': (direction == "rtl") ? -0 - $(window).width() : -0 + $(window).width(),
        opacity: 1
    }, 1000, "easeInOutExpo", function () {
        $(this).hide();
    });

    if (tab.attr('id') == "team-tab") {
        $('#members-tab').animate({
            'margin-left': $(window).width(),
            opacity: 1
        }, 1000, "easeInOutExpo", function () {
            $(this).hide();
            $(this).unbind('click');
        });
    }
  }


  $('.nav').find('.current').removeClass('current');
  $('a[href="' + id + '"]').parent().addClass('current').prev().css('');

  tab = $(id + "-tab");
  if (lasttab !== tab) { //changed
    tab.css({
     'margin-left': (direction == "rtl") ? -0 + $(window).width() : -0 - $(window).width(),
     opacity: 1
     }).show().animate({
     'margin-left': 0,
     opacity: 1,
    }, 1000, "easeInOutExpo");
  }

  if (id == "#team") {
    $('#members-tab').css({
        'margin-left': $(window).width()
    }).show().animate({
        'margin-left': 0
    }, 1000, "easeInOutExpo").find('.tab').show();

  }

  setFooterY();
}

顺便说一句(顺便说一句)在这里检查 jquery 滑块非常好,任何您将获得已经测试过的各种浏览器的响应滑块。:D

更新

检查下面的完整工作示例,除了内容高度不适用于我在setFooterYfunction.xml 中定义的内容高度。

    var tab, lasttab;
var defaultTab = '#profile-tab';
var direction = "rtl"; // Right To Left

$('.tab').hide();

function showTab(id) {
    id = id.replace("-tab", "");
    //window.location.hash = id;

    if (tab) {
        direction = (tab.attr('data-index') < $(id + "-tab").attr('data-index')) ? "rtl" : "ltr";
        lasttab = tab;
        lasttab.animate({
            'margin-left': (direction == "rtl") ? -0 - $(window).width() : -0 + $(window).width(),
            opacity: 1
        }, 1000, "easeInOutExpo", function () {
            $(this).hide();
        });

        if (tab.attr('id') == "team-tab") {
            $('#members-tab').animate({
                'margin-left': $(window).width(),
                opacity: 1
            }, 1000, "easeInOutExpo", function () {
                $(this).hide();
                $(this).unbind('click');
            });
        }
    }


    $('.nav').find('.current').removeClass('current');
    $('a[href="' + id + '"]').parent().addClass('current').prev().css('');

    tab = $(id + "-tab");
    tab.css({
        'margin-left': (direction == "rtl") ? -0 + $(window).width() : -0 - $(window).width(),
        opacity: 1
    }).show().animate({
        'margin-left': 0,
        opacity: 1,
    }, 1000, "easeInOutExpo");

    if (id == "#team") {
        $('#members-tab').css({
            'margin-left': $(window).width()
        }).show().animate({
            'margin-left': 0
        }, 1000, "easeInOutExpo").find('.tab').show();

    }

    setFooterY();
}

function setFooterY() {
    var h = tab.height() + 150 + 0;

    if (tab.attr('id') == "team-tab") {
        $('#members-tab').height($('#members-tab').find('.page').height() + 0);
        h += $('#members-tab').height() - 0;
    }

    $('#content').height(h);
    $('#vignettage').height(0 + h);
}

if ($('.nav').length > 0 && $('#news-page').length == 0) {
    $('.nav').on('click', 'a', function (e) {
        e.preventDefault();
        var clickedAnchor = $(e.target);
        if (!clickedAnchor.parent().hasClass('current')) {
            showTab(clickedAnchor.attr('href'));
        }

    });

    if (window.location.hash != "") {
        showTab(window.location.hash);
    } else {
        showTab(defaultTab);
    }

    $(document).ready(function () {
        setTimeout(setFooterY, 500);
    });
}
于 2013-04-19T06:21:47.460 回答
0

添加验证您要显示的 div 是否已经可见并且不对其进行动画处理:

...

if ($('.nav').length > 0 && $('#news-page').length == 0) {
    $('.nav').on('click', 'a', function (e) {
        e.preventDefault();
       if(!$(''+$(e.target).attr('href')+'-tab').is(':visible')){
        showTab($(e.target).attr('href'));
       }

});

...
于 2013-04-19T06:14:21.577 回答
0

我可以在您分配class="current"给选定选项卡的代码中看到。onclick您可以使用此类禁用当前锚点。

$('.current a').click(function(e) {
e.preventDefault();
});
于 2013-04-19T06:16:18.803 回答