最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - vertical Menu Ant design height 100% - Stack Overflow

programmeradmin1浏览0评论

Good afternoon. I'm new to web development and I'm not able to put the ant design menu (/ponents/menu/) at 100% of the screen height.

I tried to put <Layout style = {{height:" 100vh "}}> before the but it did not work.

Here's the code I'm using

. . . . .

import React from 'react'
import { Layout, Menu, Breadcrumb, Icon, Button } from 'antd';

const { Header, Content, Footer, Sider } = Layout;
const SubMenu = Menu.SubMenu;

export class SideMenu extends React.Component {

  constructor(props){
    super(props)
    this.state = {collapsed: false}
  }

  toggleCollapsed (){
     this.setState({
       collapsed: !this.state.collapsed
     })
  }

  render() {
    return (
      <div style={{ width: 256 }}>
        <Menu
          defaultSelectedKeys={[]}
          defaultOpenKeys={[]}
          mode="inline"
          theme="light"
          inlineCollapsed={this.state.collapsed}
        >
          <Menu.Item key="0">
            <div onClick={this.toggleCollapsed.bind(this)}>
              <Icon type={this.state.collapsed ? 'menu-unfold' : 'menufold'}/>
            </div>
          </Menu.Item>    
          ...    
          <Menu.Item key="5">
            <Icon type="rocket" />
            <span>Funções</span>
          </Menu.Item>
        </Menu>
      </div>
    );
  }
}

Thanks for your help.

Good afternoon. I'm new to web development and I'm not able to put the ant design menu (https://ant.design/ponents/menu/) at 100% of the screen height.

I tried to put <Layout style = {{height:" 100vh "}}> before the but it did not work.

Here's the code I'm using

. . . . .

import React from 'react'
import { Layout, Menu, Breadcrumb, Icon, Button } from 'antd';

const { Header, Content, Footer, Sider } = Layout;
const SubMenu = Menu.SubMenu;

export class SideMenu extends React.Component {

  constructor(props){
    super(props)
    this.state = {collapsed: false}
  }

  toggleCollapsed (){
     this.setState({
       collapsed: !this.state.collapsed
     })
  }

  render() {
    return (
      <div style={{ width: 256 }}>
        <Menu
          defaultSelectedKeys={[]}
          defaultOpenKeys={[]}
          mode="inline"
          theme="light"
          inlineCollapsed={this.state.collapsed}
        >
          <Menu.Item key="0">
            <div onClick={this.toggleCollapsed.bind(this)}>
              <Icon type={this.state.collapsed ? 'menu-unfold' : 'menufold'}/>
            </div>
          </Menu.Item>    
          ...    
          <Menu.Item key="5">
            <Icon type="rocket" />
            <span>Funções</span>
          </Menu.Item>
        </Menu>
      </div>
    );
  }
}

Thanks for your help.

Share Improve this question edited Jan 16, 2018 at 22:00 CAustin 4,61415 silver badges27 bronze badges asked Jan 16, 2018 at 19:07 Michael FernandesMichael Fernandes 1111 gold badge1 silver badge15 bronze badges 0
Add a ment  | 

2 Answers 2

Reset to default 6

Try to manage separate style sheet(in my case menu.less) and put it this code

it should be work

.menu-style {

height: 100vh;
width: 200px;
position: fixed;
}

just try it.

You can use ref get the DOM you wanted reference height. Then use the height at some Components.

function refIt(theDOM) {
  const height = theDOM.clientHeight;
  this.setState({ height });
}

return (<div ref={theDOM => refIt(theDOM)}>
  <div height={this.state.height}>
  </div>
</div>);
发布评论

评论列表(0)

  1. 暂无评论