Polímero - Elementos de néon
Neon-animation é usado para implementar transições animadas para elementos do Polymer usando animações da web.
Você pode usar animação neon em seu aplicativo, executando o seguinte comando para instalá-lo no diretório do projeto.
bower install --save PolymerElements/neon-animation
Este comando instalará todos os elementos relacionados à animação neon na pasta bower_components.
Exemplo
O exemplo a seguir especifica o uso de animação neon em Polymer.js. Crie um arquivo index.html e adicione o seguinte código nele.
<!doctype html>
<html>
<head>
<title>Polymer Example</title>
<script src = "bower_components/webcomponentsjs/webcomponents-lite.js"></script>
<link rel = "import" href = "bower_components/polymer/polymer.html">
<link rel = "import" href = "bower_components/paper-styles/demo-pages.html">
<link rel = "import" href = "bower_components/neon-animation/web-animations.html">
</head>
<body>
<h2>Neon Example</h2>
<a href = "bower_components/neon-animation/demo/declarative/index.html">Declarative</a>
<br>
<a href = "bower_components/neon-animation/demo/dropdown/index.html">Dropdown</a>
<br>
<a href = "bower_components/neon-animation/demo/grid/index.html">Grid</a>
<br>
<a href = "bower_components/neon-animation/demo/tiles/index.html">Tiles</a>
<br>
<a href = "bower_components/neon-animation/demo/card/index.html">Card</a>
</body>
</html>
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.
Clique em cada link. Você verá os diferentes tipos de transições animadas, que são criadas usando animações da web.