我正在使用jquery制作垂直条,但它从上到下,我需要从下到上。
这是酒吧的css:
.progress_bar_cal{
height:0px;
width:24px;
-moz-border-radius:5px;
-webkit-border-radius:5px;
border-radius:5px;
background:url(../img/grow.jpg);
margin-right:1px;
margin-top:2px;
}
这就是jquery:
$('.progress_bar_cal').each(function(){
var percent = $(this).attr('title');
$(this).animate({height : percent},1000);
});
关于如何使其发挥作用的任何想法?
谢谢!
答案 0 :(得分:1)
如果.progress_bar_cal
位于带有position: absolute
元素的bottom : 0
position: relative
内,您会看到该栏从下到上展开
答案 1 :(得分:0)
如果您希望元素从底部打开,则需要将其绝对放置在元素的底部:
<div id="container">
<div class="slideMe"></div>
</div>
通过以下方式设计样式:
#container {
position: relative;
height: 300px;
}
.slideMe {
position: absolute;
bottom: 0;
display: none;
}