使用Google搜索,在语义ui的文档和问题页面中搜索,并在stackoverflow中搜索。找不到答案。
在Semantic-ui-react中,如何制作内容固定在屏幕上的侧边栏?我现在拥有的是:
<Sidebar.Pushable as={Segment}>
<Sidebar
id="sidebar"
as={Menu}
animation="overlay"
direction="right"
visible={this.state.visible}
vertical
inverted
>
{this.getMenuItems()}
</Sidebar>
<Sidebar.Pusher>
<Route path="/" component={Filler} />
</Sidebar.Pusher>
</Sidebar.Pushable>
在语义ui-react文档中似乎没有任何单词,并使Sidebar.Pushable,Sidebar或任何菜单项位置:固定;似乎也不起作用。
答案 0 :(得分:3)
在answer的帮助下,我能够获得一个粘性边栏。
基本上,它声明为了有一个固定的侧边栏坚持我们的无限滚动页面,我们必须删除transform属性 在父容器上。推理是因为变换将定位上下文从视口更改为 旋转元素。因此,“fixed”子元素的行为就像它具有“绝对”定位一样。
我将此添加到sidebar.overrides文件
/* Page Context */
.pushable:not(body) {
transform: none;
}
.pushable:not(body) > .ui.sidebar,
.pushable:not(body) > .fixed,
.pushable:not(body) > .pusher:after {
position: fixed;
}
此解决方案适用于基本语义ui库。由于语义 - ui-react需要语义ui,因此最终也会为语义 - ui-react边栏工作。
答案 1 :(得分:0)
您需要使用一些CSS / SCSS手动执行此操作。基本上,您需要将高度设置为固定值。
@media only screen and (max-width: 768px) {
.ui.wide.left.sidebar, .ui.wide.right.sidebar {
height: 100vh !important;
position: absolute;
}
.pusher {
margin-left: 20px;
}
}
.pushable {
min-height: 100vh;
}
.ui.wide.left.sidebar, .ui.wide.right.sidebar {
height: 100vh;
position: fixed !important;
bottom: 0px !important;
top: 0px !important;
}
答案 2 :(得分:0)
我已使用semantic-ui
Sidebar
模块中的类来创建所需的固定侧边栏。如果您想要更多Component
(ish)代码,则应将pusher
类替换为其对应的Sidebar.Pusher
组件。
这是我的代码:
import React, { Component } from 'react'
import { Dropdown, Icon, Input, Menu } from 'semantic-ui-react'
export default class MySidebar extends Component {
state = {}
handleItemClick = (e, { name }) => this.setState({ activeItem: name })
componentDidMount() {}
render() {
const { activeItem } = this.state
return(
<div className='pusher'>
<div className='full height'>
<div className='toc'>
<Menu className='inverted vertical left fixed'>
<Menu.Item>
Home
<Icon name='dashboard' />
<Menu.Menu>
<Menu.Item name='search' active={activeItem === 'search'} onClick={this.handleItemClick}>
Search
</Menu.Item>
<Menu.Item name='add' active={activeItem === 'add'} onClick={this.handleItemClick}>
Add
</Menu.Item>
<Menu.Item name='about' active={activeItem === 'about'} onClick={this.handleItemClick}>
Remove
</Menu.Item>
</Menu.Menu>
</Menu.Item>
<Menu.Item name='browse' active={activeItem === 'browse'} onClick={this.handleItemClick}>
<Icon name='grid layout' />
Browse
</Menu.Item>
<Menu.Item name='messages' active={activeItem === 'messages'} onClick={this.handleItemClick}>
Messages
</Menu.Item>
<Dropdown item text='More'>
<Dropdown.Menu>
<Dropdown.Item icon='edit' text='Edit Profile' />
<Dropdown.Item icon='globe' text='Choose Language' />
<Dropdown.Item icon='settings' text='Account Settings' />
</Dropdown.Menu>
</Dropdown>
</Menu>
</div>
<div className='article'>
<div>Content</div>
</div>
</div>
</div>
)
}
}
风格:
.toc {
width: 200px;
}
.article {
margin-left: 210px;
}
答案 3 :(得分:0)
一切都变得简单!
<Sidebar.Pusher style={{overflow: 'scroll', height: '100%'}}>
我想您自己会明白为什么这样做的。
答案 4 :(得分:-1)
尝试以下代码。
<Sidebar as={Menu} animation='overlay' icon='labeled' inverted vertical visible width='wide'>
<Menu.Item as={Link} to="/admin">
<Icon name='building' />
Rubykraft
</Menu.Item>
<Menu.Item as='a'>
<Icon name='user' />
Shan
</Menu.Item>
<Menu.Item as='a'>
<Icon name='user' />
Vishnu
</Menu.Item>
</Sidebar>