欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2022-06-17 17:02:15
有时对于响应式布局,我们需要根据组件的宽度自适应高度。css无法实现这种动态变化,传统是用jquery实现。 而在react中无需依赖于jquery,实现相对比较简单...

有时对于响应式布局,我们需要根据组件的宽度自适应高度。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.addeventlistener('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 (
   <div classname="test" style={ { width: this.state.width, height: this.state.height } }>
    {`${this.state.width} x ${this.state.height}`}
   </div>
  );
 }
}

reactdom.render(
 <card/>,
 document.getelementbyid('root')
);

参考资料

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

react生命周期

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。