我正在尝试实现一个相当简单的动画,其中标题和div
悬停时向上移动。问题是div
有一个透明度设置,这意味着标题必须放在它之外才能不依赖于不透明度。所以现在标题没有随着盒子移动。我应该对元素进行分组还是更改 HTML/CSS 结构?
HTML:
<a class="gbox a2" href="#">
<div></div>
<h2>TITLE</h2>
</a>
CSS:
.gbox {border:1px solid #aaa; position:relative;}
.gbox div {background:#ddd; opacity:0.75; height:80px; position:absolute; bottom:0; width:100%}
.gbox h2 {position:absolute; right:20px; bottom:12px; color:#000}
.a2 {width:338px; height:194px; background:#333; display:inline-block}
JavaScript:
$('.gbox').hover(
function() { $(this).children('div').animate({height: '+=10px'}, 200) },
function() { $(this).children('div').animate({height: '-=10px'}, 200) }
)