Polímero - Elementos de neón

Neon-animation se utiliza para implementar transiciones animadas para elementos de polímero mediante animaciones web.

Puede usar neon-animation en su aplicación, ejecutando el siguiente comando para instalarlo en el directorio de su proyecto.

bower install --save PolymerElements/neon-animation

Este comando instalará todos los elementos relacionados de neon-animation en la carpeta bower_components.

Ejemplo

El siguiente ejemplo especifica el uso de animación de neón en Polymer.js. Cree un archivo index.html y agregue el siguiente código en él.

<!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>

Salida

Para ejecutar la aplicación, navegue hasta el directorio del proyecto creado y ejecute el siguiente comando.

polymer serve

Ahora abra el navegador y navegue hasta http://127.0.0.1:8081/. Lo siguiente será la salida.

Haga clic en cada enlace. Verá los diferentes tipos de transiciones animadas, que se crean mediante animaciones web.