我在页脚css方面遇到了一些困难。我希望它留在页面底部。在滚动到页面底部之前,我不希望它可见。
.footer{
position: fixed;
display: block;
width: 100%;
height: 80px;
bottom: 0;
float: none;
}
答案 0 :(得分:1)
答案 1 :(得分:0)
.footer {
position: absolute;
display: block;
width: 100%;
height: 0;
bottom: 0;
float: none;
transition: height 1s ease-in-out;
}
.footer.active {
height: 80px;
}
<script type="text/javascript">
window.onscroll = function(ev) {
if ((window.innerHeight + window.scrollY) >= document.body.offsetHeight) {
$(".footer").addClass('active');
} else {
$(".footer").removeClass('active');
}
};
</script>
<div class="footer">
...
</div>