Polimero - Bottone in carta
Il bottone di carta è un semplice bottone che ha un effetto a catena dal punto di contatto. Per ottenere il pulsante di carta nella directory, è necessario utilizzare il seguente comando nel prompt dei comandi.
bower install --save PolymerElements/paper-button
Esempio
L'esempio seguente specifica l'uso dell'elemento paper-button 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>
<h2>Paper-Button Example</h2>
<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/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>
Produzione
Per eseguire l'applicazione, vai alla directory del progetto creato ed esegui il seguente comando:
polymer serve
Ora apri il browser e vai a http://127.0.0.1:8081/. Di seguito sarà l'output.