我遇到的问题是,在我的动画上,cookies warning div
我试图只为高度设置动画来做这样的事情:
如果你打开我的网站,你可以看到动画从height 0
到 ,height 75px
但它也从左到右动画 (width),为什么会这样?
我只是为高度而不是从左到右或宽度属性设置动画。
这是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');