Polimero - Pannello cassetto carta
Il pannello del cassetto della carta è un pannello del cassetto che scorre dentro / fuori per nascondere / rivelare il pannello principale. La posizione normale del cassetto è sul lato sinistro del pannello principale. Il cassetto sarà impilato sopra il pannello principale nel layout stretto.
Per ottenere il pannello del cassetto della carta nella directory, è necessario utilizzare il seguente comando nel prompt dei comandi.
bower install --save PolymerElements/paper-drawer-panel
Esempio
L'esempio seguente specifica l'uso dell'elemento paper-drawer-panel 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/paper-button/paper-button.html">
<link rel = "import" href = "bower_components/paper-styles/paper-styles.html">
<link rel = "import" href = "bower_components/paper-card/paper-card.html">
<link rel = "import" href = "bower_components/iron-icons/iron-icons.html">
<link rel = "import" href = "bower_components/iron-icons/communication-icons.html">
<link rel = "import" href = "bower_components/paper-checkbox/paper-checkbox.html">
<link rel = "import" href = "bower_components/paper-drawer-panel/paper-drawer-panel.html">
<dom-module id = 'my-app'>
<template>
<style is = "custom-style">
paper-button {
color: white;
margin: 10px;
background-color: green;
white-space: nowrap;
}
button {
display: block;
line-height: 40px;
background-color: transparent;
border: none;
font-size: 14px;
margin: 20px;
}
#close {
color: white;
margin: 10px;
background-color: red;
white-space: nowrap;
}
</style>
<paper-drawer-panel id = "paperDrawerPanel" force-narrow>
<div drawer>
<button id = "close" tabindex = "0" paper-drawer-toggle raised>Close Drawer</button>
<h3>Welcome to Tutorials point</h3>
</div>
<div main>
<div>
<paper-button paper-drawer-toggle raised>Open Drawer</paper-button>
</div>
</div>
</paper-drawer-panel>
</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.
Quando fai clic sul pulsante Apri cassetto, il seguente sarà l'output.