React根据宽度自适应高度的示例代码

网友投稿 363 2023-03-27


React根据宽度自适应高度的示例代码

有时对于响应式布局,我们需要根据组件的宽度自适应高度。css无法实现这种动态变化,传统是用jquery实现。

而在React中无需依赖于JQuery,实现相对比较简单,只要在DidMount后更改width即可

Try on Codepen

需要注意的是在resize时候也要同步变更,需要注册个监听器

class Card extends React.Component {

constructor(props) {

super(props);

this.state = {

width: props.width || -1,

height: props.height || -1,

}

}

componentDidMount() {

this.updateSize();

window.addEventLiswVHAKtener('resize', () => this.updateSize());

}

componentWillUnmount() {

window.removeEventListener('resize', () => this.updateSize());

}

updateSize() {

try {

const parentDom = ReactDOM.findDOMNode(this).parentNode;

let { width, height } = this.props;

//如果props没有指定height和width就自适应

if (!width) {

width = parentDom.offsetWidth;

}

if (!height) {

height = width * 0.38;

}

this.setState({ width, height });

} catch (ignore) {

}

}

render() {

return (

{`${this.state.width} x ${this.state.height}`}

);

}

}

ReactDOM.render(

,

document.getElementById('root')

);

参考资料

React生命周期


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:详解ionic本地相册、拍照、裁剪、上传(单图完全版)
下一篇:Eclipse Debug模式的开启与关闭问题简析
相关文章

 发表评论

暂时没有评论,来抢沙发吧~