2

我目前正在使用 app-layout 元素(版本 0.10.4),特别是 app-toolbar。

当创建一个带有“main-title”属性的 div 时,它不会“工作”。我不确定,如果它可能是我进口的。

<link rel="import" href="bower_components/paper-styles/paper-styles.html">
<link rel="import" href="bower_components/iron-icons/iron-icons.html">

<link rel="import" href="bower_components/app-layout/app-layout.html">
<link rel="import" href="bower_components/paper-icon-button/paper-icon-button.html">

或者可能是我使用的 app-toolbar 错误。

<body>
    <app-header-layout>
        <app-header effects="waterfall" reveals>
            <app-toolbar>
                <paper-icon-button icon="menu"></paper-icon-button>
            </app-toolbar>
        </app-header>
        <main>
        </main>
    </app-header-layout>
</body>

感谢所有反馈,谢谢!

4

1 回答 1

0

你的进口在我看来是正确的。鉴于文档没有完全描述做什么main-title,您可能会假设该属性的行为错误。请注意,这main-title会在工具栏上扩展标题的宽度。请参阅下面的演示。

<head>
  <base href="https://polygit.org/polymer+1.7.0/components/">
  <script src="webcomponentsjs/webcomponents-lite.min.js"></script>
  <link rel="import" href="polymer/polymer.html">
  <link rel="import" href="iron-icons/iron-icons.html">
  <link rel="import" href="paper-icon-button/paper-icon-button.html">

  <link rel="import" href="app-layout/app-layout.html">
</head>
<body>
  <style is="custom-style">
    app-toolbar {
      background-color: #4285f4;
      color: white;
      margin-bottom: 10px;
    }
    .my-title {
      border: solid 1px red;
    }
  </style>

  <app-toolbar>
    <paper-icon-button icon="menu"></paper-icon-button>
    <div class="my-title" main-title>With <code>main-title</code></div>
    <paper-icon-button icon="account-circle"></paper-icon-button>
  </app-toolbar>
  
  <app-toolbar>
    <paper-icon-button icon="menu"></paper-icon-button>
    <div class="my-title">Without <code>main-title</code></div>
    <paper-icon-button icon="account-circle"></paper-icon-button>
  </app-toolbar>
</body>

于 2016-11-02T12:47:43.570 回答