Polimero - Elementi al neon
Neon-animation viene utilizzato per implementare transizioni animate per elementi Polymer utilizzando animazioni web.
Puoi usare neon-animation nella tua applicazione, eseguendo il seguente comando per installarlo nella directory del tuo progetto.
bower install --save PolymerElements/neon-animation
Questo comando installerà tutti gli elementi correlati di neon-animation nella cartella bower_components.
Esempio
L'esempio seguente specifica l'uso dell'animazione al neon in Polymer.js. Crea un file index.html e aggiungi il seguente codice al suo interno.
<!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>
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.
Fare clic su ogni collegamento. Vedrai i diversi tipi di transizioni animate, che vengono create utilizzando animazioni web.