Polimero - Carta Fab
Paper-fab è un pulsante di azione fluttuante, che fornisce un effetto a catena, quando l'utente tocca il pulsante. Questo pulsante può avere un'immagine posizionata al centro. Per ottenere paper-fab e ironicons nella tua directory, dovresti eseguire il seguente comando nel prompt dei comandi.
bower install --save PolymerElements/paper-fab
Esempio
L'esempio seguente specifica l'uso dell'elemento paper-ripple in Polymer.js. Crea un file index.html e aggiungi il seguente codice al suo interno:
<!doctype html>
<html>
<head>
<link rel = 'import' href = 'my-app.html'>
</head>
<body>
<my-app></my-app>
</body>
</html>
Ora apri il file my-app.html e includi il codice seguente.
<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>
Produzione
Per eseguire l'applicazione, accedere alla directory del progetto creato ed eseguire il comando seguente.
polymer serve
Ora apri il browser e vai a http://127.0.0.1:8081/. Di seguito sarà l'output.