Polymère - Matériel de papier

Le papier-matériau est un contenant qui a l'effet d'un morceau de papier surélevé. Pour obtenir du papier-matériel dans votre répertoire en état de fonctionnement, vous devez exécuter la commande suivante dans l'invite de commande.

bower install --save PolymerElements/paper-material

Exemple

Votre fichier index.html doit ressembler à ce qui suit.

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

Votre fichier my-app.html doit ressembler à ce qui suit.

<link rel = 'import' href = 'bower_components/polymer/polymer.html'>
<link rel = "import" href = "bower_components/paper-listbox/paper-listbox.html">
<link rel = "import" href = "bower_components/paper-material/paper-material.html">

<dom-module id = 'my-app'>
   <template>
      <style>
         paper-material {
            display: inline-block;
            background: white;
            box-sizing: border-box;
            margin: 7px;
            padding: 14px;
            border-radius: 3px;
         }
      </style>
      
      <h3>Paper-Material Example</h3>
      <paper-material elevation = "5">"Tutorialspoint"</paper-material>
      <paper-material elevation = "0">is</paper-material>
      <paper-material elevation = "5">Simply Easy Learning Online Tutorials</paper-material>
   </template>
   
   <script>
      Polymer ({
         is: 'my-app',
         ready: function() {
            this.async(function() {         
            });
         }
      });
   </script>
</dom-module>

Production

Actualisez le serveur Polymer et ce qui suit sera la sortie.