【发布时间】:2015-08-15 18:18:18
【问题描述】:
我正在尝试从中心向左过渡并降低图像的高度。 高度过渡工作正常,但边距只是传送到左侧而不是动画。
这是我的代码:
#logo_img {
height: 55px;
width: 55px;
background-color: red;
margin-left: auto;
margin-right: auto;
display: block;
transition: all 1s ease-in-out;
}
#logo_img.tiny {
height:45px;
margin-left: 0;
}
JS:
$('#logo_img').addClass('tiny');
工作示例:http://jsfiddle.net/v0w6s3ms/1/
有什么帮助吗?
【问题讨论】:
标签: css margin transition