P3X GitList Demo
GitHub
Repo
Changelog
To do
Releases
Themes
Language
Afrikaans
العربية
বাংলা
Català
Čeština
Dansk
Deutsch
Ελληνικά
English
Español
Suomi
Français
עברית
Magyar
Italiano
日本語
한국어
Nederlands
Norsk
Polski
Português
Română
Русский
Српски
Svenska
Türkçe
Українська
Tiếng Việt
中文
Change log
Loading change log ...
To do ...
Loading todo ...
browsing:
c02c32296cc2ccc6ae48788d51d2c8d83a97855f
Branches
master
Tags
1.1.129-287
1.1.113-149
1.1.108-143
1.1.95-138
1.1.92-119
1.0.35-18
1.0.13-14
Files
Commits
Log
Graph
Stats
angular-compile.git
test
angular-webpack
index.html
RSS
Git
Fetch origin
Download
ZIP
TAR
Clone
Delete
Are you sure to delete this file?
Editor
Raw
Blame
History
HTML code
Clone
SSH
HTTPS
This file ( 2kB ) exceeds the allowed full mode (48 kb) size. The editor full hight is disabled, only scrolling is allowed..
If you wish to edit a file, it is recommended to use the scroll mode as some users do not like the full height mode, although some users like it.
test/angular-webpack/index.html
<!DOCTYPE html> <html> <head> <title>P3X Angular Compile</title> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <base href="/"/> </head> <body> <p3x-compile-test> <!-- https://codepen.io/Sixclones/pen/VBdeXL --> <style type="text/css"> body { width: 100vw; height: 100vh; display: flex; justify-content: center; align-items: center; background-color: rgba(0, 0, 0, 0.1); } .LoaderBalls { width: 90px; display: flex; justify-content: space-between; align-items: center; } .LoaderBalls__item { width: 20px; height: 20px; border-radius: 50%; background: rgba(0, 0, 0, 0.5); } .LoaderBalls__item:nth-child(1) { animation: bouncing 0.4s alternate infinite cubic-bezier(0.6, 0.05, 0.15, 0.95); } .LoaderBalls__item:nth-child(2) { animation: bouncing 0.4s 0.1s alternate infinite cubic-bezier(0.6, 0.05, 0.15, 0.95) backwards; } .LoaderBalls__item:nth-child(3) { animation: bouncing 0.4s 0.2s alternate infinite cubic-bezier(0.6, 0.05, 0.15, 0.95) backwards; } @keyframes bouncing { 0% { transform: translate3d(0, 10px, 0) scale(1.2, 0.85); } 100% { transform: translate3d(0, -20px, 0) scale(0.9, 1.1); } } </style> <div class="LoaderBalls"> <div class="LoaderBalls__item"></div> <div class="LoaderBalls__item"></div> <div class="LoaderBalls__item"></div> </div> </p3x-compile-test> </body> </html>