单击下一个项目后将元素返回到其起始位置时出现问题。
当用户将鼠标悬停在 div.box 中的两个元素过渡时,单击该元素时,元素应保持在原位。当单击打开/关闭相同的项目时,这可以正常工作。问题是当单击下一个项目时,跨度保持在 a.blanket 的中心。
代码:http: //jsfiddle.net/MhLwH/3/
HTML:
<div class="box">
<div class="img"></div>
<a href="" class="blanket">
<span class="arrow"></span>
</a>
</div>
<div class="box">
<div class="img"></div>
<a href="" class="blanket">
<span class="arrow"></span>
</a>
</div>
CSS:
.box {
width:200px;
height:200px;
background:red;
float:left;
margin-left:10px;
margin-top:50px;
position:relative;
/*overflow:hidden*/
}
.blanket {
width:100%;
height:100%;
position:absolute;
top:100%;
left:0;
background:blue;
}
.blanket, .arrow {
-webkit-transition: all 0.3s ease-in;
}
.arrow {
display:block;
width:100px;
height:100px;
position:relative;
background:black;
top:-300px;
z-index:9999;
}
.box:hover .blanket {
top:0;
}
.box:hover .blanket span {
top:53px;
}
.active {
top:0;
}
.activeArrow {
top:53px;
}
JS:
$('.box').find('a').click(function (e) {
e.preventDefault();
var $this = $(this);
if ($this.is('.active')) {
$this.removeClass('active');
$this.find('span').removeClass('activeArrow');
} else {
$('a.active').removeClass('active');
$this.addClass('active');
$this.find('span').addClass('activeArrow');
}
});
旁注我知道过渡现在只针对 webkit