Polymère - Paper Fab

Paper-fab est un bouton d'action flottant, qui fournit un effet d'entraînement, lorsque l'utilisateur touche le bouton. Ce bouton peut avoir une image placée au centre. Pour obtenir paper-fab et ironicons dans votre répertoire, vous devez exécuter la commande suivante dans l'invite de commande.

bower install --save PolymerElements/paper-fab

Exemple

L'exemple suivant spécifie l'utilisation de l'élément paper-ripple dans Polymer.js. Créez un fichier index.html et ajoutez-y le code suivant -

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

Maintenant, ouvrez le fichier my-app.html et ajoutez-y le code suivant.

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

<dom-module id = 'my-app'>
   <template>
      <style is = "custom-style">
         paper-fab {
            display: inline-block;
            margin: 8px;
         }
         paper-fab[mini] {
            --paper-fab-background: #FF5722;
         }
         paper-fab[label] {
            font-size: 20px;
            --paper-fab-background: #2196F3;
         }
      </style>

      <h3>Paper-Fab Example </h3>
      <paper-fab icon = "alarm-on"></paper-fab>
      <paper-fab mini icon = "android"></paper-fab>
      <paper-fab mini icon = "home"></paper-fab>
   </template>
   
   <script>
      Polymer ({
         is: 'my-app',
         ready: function() {
            this.async(function() { 
            });
         }
      });
   </script>
</dom-module>

Production

Pour exécuter l'application, accédez au répertoire de projet créé et exécutez la commande suivante.

polymer serve

Ouvrez maintenant le navigateur et accédez à http://127.0.0.1:8081/. Voici la sortie.