当我关闭app-drawer
时,我遇到了主要内容无响应的问题。
在this jsbin中,当我关上门时,main content
不会向左移动。有什么想法吗?
答案 0 :(得分:1)
这似乎是预期的行为。根据{{1}} app-drawer-layout
抽屉,如果缩小或主要内容的边距等于抽屉的宽度,则堆叠在主要内容的顶部。
if (this.narrow || !drawer) {
contentContainer.style.marginLeft = '';
contentContainer.style.marginRight = '';
} else {
var drawerWidth = drawer.getWidth();
if (drawer.position == 'right') {
contentContainer.style.marginLeft = '';
contentContainer.style.marginRight = drawerWidth + 'px';
} else {
contentContainer.style.marginLeft = drawerWidth + 'px';
contentContainer.style.marginRight = '';
}
}
即使是Polymer团队创建的演示似乎也遵循这种模式