WEB开发网
开发学院网页设计JavaScript 类似QQ管家页面jquery图片显隐轮换效果 阅读

类似QQ管家页面jquery图片显隐轮换效果

 2012-06-25 11:57:14 来源:WEB开发网   
核心提示:$(document).ready(function() { var z = 0; var inAnimation = false; $('#box img').each(function() { z++; $(this).css('z-index', z); });
$(document).ready(function() {
  var z = 0;
  var inAnimation = false;
  $('#box img').each(function() {
    z++;
    $(this).css('z-index', z);
  });
  function slide() {
    if(inAnimation) return false;
    else inAnimation = true;
    var MaxZindex = z; SecondZindex = z-1;
    $('#box img').each(function() {
      if($(this).css('z-index') == MaxZindex) {
        $(this).animate({left:"350px"}, 800, function() {
          $(this).css('z-index', 1)
            .animate({left:"0px"}, 800, function() {
              inAnimation = false;
            });
        });
      } else if($(this).css('z-index') == SecondZindex) {
		$(this).animate({left:"-80px"}, 800, function() {
          $(this).css('z-index', parseInt($(this).css('z-index')) + 1);
        }).animate({left:"0px"}, 800);
	  }else{
        $(this).animate({left:"0px"}, 600, function() {
          $(this).css('z-index', parseInt($(this).css('z-index')) + 1);
        });
      }
    });
    return false;
  }
  $('#box').click(function() {
    slide();
  });
});

Tags:类似 QQ 管家

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接