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;
}