我得到了一个footer
带有一些可滚动内容的overflow-y
. 页面上的所有其他内容都使用 CSS 过渡动画非常流畅,但是由于滚动条仅在悬停时出现在页脚中,所以当它没有任何过渡时看起来真的很愚蠢。看看这里。有没有办法让它平稳过渡?
CSS:
footer
{
background-color:#333333;
position:fixed;
height:4%;
bottom: 0px;
margin-bottom: 0px;
width:100%;
text-align: right;
transition: all ease 1.1s;
color: white;
background-image:url('world1.gif');
background-repeat:no-repeat;
background-position: right bottom ;
background-size: contain;
overflow-y: hidden;
}
footer:hover {
height: 400px;
opacity: 0.95;
overflow-y: auto;
}