Polymer - 纸质按钮



paper-button 是一个从接触点生成波动效果的简单按钮。要在你的目录中获得 paper-button,应在命令提示符中使用以下命令。

bower install --save PolymerElements/paper-button

示例

以下示例指定在 Polymer.js 中使用 paper-button 元素。创建一个 index.html 文件并在其中添加以下代码。

<!doctype html>
<html>
   <head>
      <link rel = 'import' href = 'my-app.html'>
   </head>
   
   <body>
      <h2>Paper-Button Example</h2>
      <my-app></my-app>
   </body>
</html>

现在,打开 my-app.html 文件并在其中包含以下代码。

<link rel = 'import' href = 'bower_components/polymer/polymer.html'>
<link rel = "import" href = "bower_components/paper-button/paper-button.html">
<link rel = "import" href = "bower_components/paper-styles/paper-styles.html">
<dom-module id = 'my-app'>
   <template>
      <div class = "container">
         <paper-button toggles raised class = "green">Active</paper-button>
         <paper-button disabled class = "disabled">Disabled</paper-button>
      </div>
      
      <div class = "container" ></div>
      <style is = "custom-style">
         #container {
            display: flex;
         }
         paper-button {
            font-family: 'Roboto', 'Noto', sans-serif;
            font-weight: normal;
            font-size: 14px;
            -webkit-font-smoothing: antialiased;
         }
         paper-button.green:hover {
            background-color: var(--paper-green-400);
         }
         paper-button.green {
            background-color: var(--paper-green-500);
            color: white;
         }
         paper-button.green[active] {
            background-color: var(--paper-red-500);
         }
         paper-button.disabled {
            color: black;
            background-color:#969696;
         }
      </style>
   </template>
   
   <script>
      Polymer ({
         is: 'my-app',
         ready: function() {
            this.async(function() {
            });
         }
      });
   </script>
</dom-module>

输出

要运行应用程序,请导航到所创建的项目目录并运行以下命令 −

polymer serve

现在打开浏览器并导航到 http://127.0.0.1:8081/。以下是输出。

Polymer paper_button
polymer_elements.htm
广告