私が抱えている問題は、のアニメーションでcookies warning div
、高さをアニメーション化して次のようなことをしようとしていることです:
私のウェブサイトを開くと、アニメーションが からheight 0
に移動するのがわかりますがheight 75px
、左から右 (幅) にもアニメーション化されますが、なぜそうなっているのでしょうか?
左から右、または幅のプロパティではなく、高さをアニメーション化しています。
これはCSSです:
#cookiesWarning {
background: #fff;
-webkit-box-shadow: 0 0 35px #888;
box-shadow: 0 0 35px #888;
-webkit-transition: all 1.5s ease;
-moz-transition: all 1.5s ease;
transition: all 1.5s ease;
height: 0px;
position: fixed!important;
z-index: 99999998!important;
left: 0!important;
width: 100%!important;
bottom: 0;
}
#cookiesWarning.active {
height: 75px;
}
そしてスクリプト:
$('#cookiesWarning').addClass('active');