添加和删​​除类不同的元素

时间:2015-05-21 19:36:30

标签: javascript jquery html tweenlite tweenmax

所以我现在正在学习jquery和动画的一点点tweenlite(我想保持基本)。所以我现在正在构建一个投资组合网格,但我想添加一个元素的点击,其他元素正在消失(从右边滑动并不重要)。

但是我无法找到一种方法使1个元素有1个框显示而另一个元素有一个不同的框来显示而不是一遍又一遍地复制代码并且每次都改变一个简单的数字,必须有一种让它工作而不会一遍又一遍地重复代码的方法。

我创建了一个codepen来显示我的挣扎。

我希望我很清楚描述这个问题:)

HTML         

  <div class="box">
    <div class="show">Show 1</div>
  </div>

  <div class="bigbox">
    <div class="removeit">
      <div class="bigshow">Bigshow 1</div>
    </div>
  </div>

  <div class="box">
    <div class="show">Show 2</div>
  </div>

  <div class="bigbox">
    <div class="removeit">
      <div class="bigshow">Bigshow 2</div>
    </div>
  </div>

</div>

CSS

.container {
  overflow: auto;
  margin: 0 auto;
  width:500px;
}

.box {
  height:200px;
  width:200px;
  background:yellow;
  text-align:center;
  cursor:pointer;
  margin:0 auto;
  float:left;
  margin-right:50px;
}

.bigbox {
  height:100%;
  width:100%;
  background-color: grey;
  z-index:100;
  left:0;
  opacity: 0;
  position: fixed;
  display:none;
  top:0;
  .removeit {
    height:100px;
    width: 100px;
    top: 0;
    right:0;
    background-color: blue;
    margin:0 auto;
    cursor:pointer;
  }
}

  .show {
    display:block;
  }
  .noscroll {
    overflow:hidden;
  }

的Javascript

$(".box").click(function(){
    $(".bigbox").addClass("show");
    TweenLite.to($('.bigbox'), 0.5, {
        opacity:1,
        autoAlpha:1
    });
});

$(".removeit").click(function(){
    TweenLite.to($('.bigbox'), 0.5, {
        autoAlpha:0,
        opacity:0
    });
});

codepen

http://codepen.io/denniswegereef/pen/MwjOXP

1 个答案:

答案 0 :(得分:2)

正如我在评论中提到的,我认为通过找到 bigbox 之间的共同点,以及我们是否要修改HTML是可能的。这个共同点应该是各自类别的 index 值。

  • 因此,首先在点击处理程序中存储 clickedIndex 变量 像这样:var clickedIndex=$('.box').index($(this));
  • 然后提供此 clickedIndex 以获得选择性 bigbox ,如下所示:var bigbox=$(".bigbox").eq(clickedIndex);
  • 最后,使用此 bigbox 变量进一步淡入或淡出。

以下是您修改后的JavaScript:

var bigbox = null;
var clickedIndex = -1;
var boxElements=$(".box");
var bigboxElements=$(".bigbox");
var removeItElements=$(".removeit");
boxElements.click(function() {
  clickedIndex = boxElements.index($(this));
  bigbox = bigboxElements.eq(clickedIndex);
  bigbox.addClass("show");
  TweenLite.to(bigbox, 0.5, {opacity: 1,autoAlpha: 1});
});

removeItElements.click(function() {
  clickedIndex = removeItElements.index($(this));
  bigbox = bigboxElements.eq(clickedIndex);
  TweenLite.to(bigbox, 0.5, {autoAlpha: 0,opacity: 0});
});

这种方法的唯一问题是它非常依赖于HTML的布局顺序。