Polímero - Cartão de Papel
O cartão de papel é um pedaço de papel de design de material simples com dados relacionados exclusivos. Para obter o cartão de papel em seu diretório, você deve usar o seguinte comando no prompt de comando.
bower install --save PolymerElements/paper-card
Exemplo
O exemplo a seguir especifica o uso do elemento de cartão de papel no Polymer.js. Crie um arquivo index.html e adicione o seguinte código a ele -
<!doctype html>
<html>
<head>
<link rel = 'import' href = 'my-app.html'>
</head>
<body>
<h2>Paper-Card Example</h2>
<my-app></my-app>
</body>
</html>
Agora, abra o arquivo my-app.html e inclua o código a seguir nele.
<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">
<dom-module id = 'my-app'>
<template>
<style is = "custom-style">
body {
display: flex;
align-items: center;
justify-content: center;
}
paper-card {
max-width: 500px;
}
.cafe-header { @apply(--paper-font-headline); }
.cafe-light { color: var(--paper-grey-600); }
.cafe-location {
float: right;
font-size: 15px;
vertical-align: middle;
}
.cafe-reserve { color: var(--google-blue-500); }
iron-icon.star {
--iron-icon-width: 16px;
--iron-icon-height: 16px;
color: var(--paper-amber-500);
}
</style>
<paper-card >
<div class = "card-content">
<div class = "cafe-header">TutorialsPoint</div>
<div class = "cafe-rating">
<iron-icon class = "star" icon = "star"></iron-icon>
<iron-icon class = "star" icon = "star"></iron-icon>
<iron-icon class = "star" icon = "star"></iron-icon>
<iron-icon class = "star" icon = "star"></iron-icon>
<iron-icon class = "star" icon = "star"></iron-icon>
</div>
<p>Free Tutorials</p>
<p class = "cafe-light">Enjoy theory and lab at the same time, right here
online. An online Lab for IT Professionals</p>
</div>
</paper-card>
</template>
<script>
Polymer ({
is: 'my-app',
ready: function() {
this.async(function() {
});
}
});
</script>
<dom-module>
Resultado
Para executar o aplicativo, navegue até o diretório do projeto criado e execute o seguinte comando.
polymer serve
Agora abra o navegador e navegue até http://127.0.0.1:8081/. A seguir será a saída.
polímero_elementos.htm