当应用程序绘制关闭时,主要内容无响应

时间:2016-10-15 17:32:13

标签: polymer polymer-1.0

当我关闭app-drawer时,我遇到了主要内容无响应的问题。

this jsbin中,当我关上门时,main content不会向左移动。有什么想法吗?

1 个答案:

答案 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团队创建的演示似乎也遵循这种模式