我正在尝试在应用类后对元素的高度进行动画处理,下面是简化的代码:
HTML
<div class="section">
<div class="panel">
<a href="#" class="toggle">Click</a>
<div class="panel-content">
Some content...
</div>
</div>
</div>
CSS
.section {
position: relative;
width: 500px;
height: 200px;
margin: 100px auto;
background: #ccc;
}
.panel {
width: 65%;
position: absolute;
left: 0;
bottom: 0;
}
.toggle {
display: inline-block;
height: 15px;
background: #ddd;
}
.panel-content {
max-height: 0;
overflow: hidden;
transition: max-height 1s;
}
.active .panel-content {
max-height: 9999px;
}
JS-
$(function() {
$('.toggle').on('click', function (e) {
e.preventDefault();
$(this).closest('.panel').toggleClass('active');
});
});
当我单击.toggle
链接时,.panel
元素上会设置一个active
类来设置.panel-content
高度的动画,但是,当第一次添加该类时,显示的内容没有动画,而当删除该类后,该元素需要一秒钟(过渡的持续时间)才能开始动画。您可以在这里看到现场演示:http://codepen.io/javiervd/pen/bLhBa
我也尝试过使用位置和溢出属性,但我无法使其发挥作用,也许还有其他方法可以达到同样的效果?
提前谢谢。
当发生某些事情时,您需要执行transition
。这不是你想要的,但让我给你看看:
.pannel-content{
height:0;
}
.pannel-content:hover{
height:50px; transition:height 2s;
}
transition
就是这样工作的。您尚未创建操作。没有单击伪类,而且无论如何都不想影响同一个元素。试着使用jQuery,比如。
<html>
<head>
<style type='text/css'>
.active .pannel-content{
display:none; height:9999px;
}
</style>
</head>
<body>
<div class='section'>
<div class='panel'>
<a href='#' class='toggle'>Click</a>
<div class='panel-content'>
Some content...
</div>
</div>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<script type='text/javascript'>
$('.toggle').click(function(){
$('.active .pannel-content').show('slow');
});
</script>
</body>
</html>
您也可以使用jQuery的.animate()
方法。当然,我建议您使用解密DOCTYPE并使用<meta>
标记。此外,您应该使用外部CSS,因为它会缓存在您的用户浏览器内存中
参观http://api.jquery.com/show/和http://api.jquery.com/animate/详细信息。