我有一个消息框,我想在点击时向下滑动。我通过Angular添加一个css类(在我的例子中使用jQuery)来实现这一点。但是我的CSS转换没有生效。
我有没有明显的错误?
这是我的小提琴:http://jsfiddle.net/mBKXn/
和我的代码:
// jQuery
$('.test').on('click',function(){
$('#msgContainer').toggleClass('msgShow');
});
// HTML
<div class="container">
<div id="msgContainer" class="msg">
<p>Message here</p>
<p>T2</p>
<p>T4</p>
</div>
Test text
</div>
<button class="test">Click</button>
// CSS
.container{
position: relative;
height: 200px;
width: 400px;
border: solid 1px #222;
}
.msg{
position: absolute;
top: 0;
background-color: #FEEFB3;
height: 0;
width: 100%;
overflow: hidden;
-webkit-transition: height 0.8s linear;
-moz-transition: height 0.8s linear;
-o-transition: height 0.8s linear;
-ms-transition: height 0.8s linear;
transition: height 0.8s linear;
}
.msgShow{
height: auto;
}
答案 0 :(得分:6)
要将高度从0设置为自动,您必须改为使用max-height
:
.msg{
position: absolute;
top: 0;
background-color: #FEEFB3;
max-height: 0;
width: 100%;
overflow: hidden;
-webkit-transition: max-height 0.8s linear;
-moz-transition: max-height 0.8s linear;
-o-transition: max-height 0.8s linear;
-ms-transition: max-height 0.8s linear;
transition: max-height 0.8s linear;
}
.msgShow{
max-height: 1000px;
}
似乎有效:http://jsfiddle.net/mBKXn/3/
另请查看此question。
答案 1 :(得分:4)
您需要设置定义的高度。高度:自动无效,因为这是默认高度值。
请在此处查看height属性的规范: http://www.w3.org/TR/CSS2/visudet.html#the-height-property
.msgShow{
height: 100%;
}
答案 2 :(得分:2)
另一种(较旧的IE兼容)方法是通过slideToggle。
Updated Fiddle that works和another Fiddle我删除了一些过渡css,这让我觉得动画更流畅。
您的代码需要稍作修改:
$('.test').on('click',function(){
$('#msgContainer').slideToggle('slow');
});
你的班级需要稍作修改:
.msg{
display:none;
position: absolute;
top: 0;
background-color: #FEEFB3;
height: auto;
width: 100%;
overflow: hidden;
}