transition 与 不固定高度模块 实现过渡

transition 与 不固定高度模块 实现过渡

transtion与不固定高度实现过渡
只需要这只max-Height就可以

如下react代码

高度变化
// onMouseEnter/onMouseLeave 方法用来改变hover的值
onMouseEnter = () => {
	this.setState({hover:true});
};
onMouseLeave = () => {
	this.setState({hover:false});
};
.maxHeight800{
    max-height: 800px!important;
}
.maxHeight0{
    max-height: 0!important;
}

你可能感兴趣的:(样式css)