0

作为新的 jQuery,我无法将代码组合为从左侧到右侧然后向下滑动的 div 动画。下滑前 div 的高度约为 10px,然后下滑到全高 351px。我可以单独完成上述操作,但不能合并!请多多指教,谢谢。这是我当前的代码;

$.hideAllExcept = function(tabs,boxes){
function init() {

  // make it bookmarkable/refreshable. but, no history.
  var hash = window.location.hash;
  (!hash) ? hideShow('#' + $(boxes+':first').attr('id')) : hideShow(window.location.hash);

  // add click handler.

  $(tabs).click(function(e) {
    e.preventDefault();
    var href = $(this).attr('href');
    // add back the hash which is prevented by e.preventDefault()
    window.location.hash = href;
    hideShow(href);
  });
}

function hideShow(el) {


    $(boxes).animate({"left": "-650px"}, "slow");
     $(el).fadeIn('slow').animate({"left" : "60%",height:"351" }, 1000);

$(tabs).removeClass('active');
      $('a[href="' + el + '"]').addClass('active');
    }
    init();

};

进步了一点!!我让它在临时服务器上运行:

http://www.tridentsolutions.co.nz/test-folder/index.html#construction_home

但是我无法让框返回到 LHS 也看到文本是如何可见的,因为文本在 html 中而不是 div 中的图像,这是否意味着我不能隐藏文本?提前致谢

(function($){

$.hideAllExcept = function(tabs,boxes){
    function init() {

      // make it bookmarkable/refreshable. but, no history.
      var hash = window.location.hash;
      (!hash) ? hideShow('#' + $(boxes+':first').attr('id')) : hideShow(window.location.hash);

      // add click handler.

      $(tabs).click(function(e) {
        e.preventDefault();
        var href = $(this).attr('href');
        // add back the hash which is prevented by e.preventDefault()
        window.location.hash = href;
        hideShow(href);
      });
    }

 function hideShow(el) {

     $(el).animate({"left": "-650px"}, "slow").fadeIn('slow');
    $(el).fadeIn('slow').animate({"left" : "60%" }, 1000).animate({"height" : "351" }, 1000);


$(tabs).removeClass('active');
      $('a[href="' + el + '"]').addClass('active');
    }
    init();

};
4

2 回答 2

0

您是否尝试过将两种效果链接在一起?将它们分成两个 animate() 函数,然后按您想要的顺序链接它们:

$(el).fadeIn('slow').animate({"left" : "60%"}, 1000).animate({"height:"351" }, 1000);

每个 animate() 函数按顺序运行,因此您可以一个接一个地执行任意数量的效果。

于 2011-06-21T21:25:58.947 回答
0

如果您希望一个动画在另一个完成后触发,请使用.animate的回调:

伪代码:

$(selector).animate({ key: val },
                     'slow' /*easing*/,
                      function() {
                          // second animation goes here
                     });
于 2011-06-21T21:26:11.703 回答