diff options
author | MikeCheng1208 <a3804430@hotmail.com> | 2018-05-04 19:57:19 +0800 |
---|---|---|
committer | Yung chieh Tsai <x01ep23i@hotmail.com> | 2018-05-29 12:38:25 +0800 |
commit | 695b157e7b511a94a18ada1578ece2e4e838f869 (patch) | |
tree | 1a79d3e776330d82f53f8f903e06b90c28ba104e /app/loading.html | |
parent | 8e672a82e2ba7838370a5332c4775a8399c961b9 (diff) | |
download | tangerine-wallet-browser-695b157e7b511a94a18ada1578ece2e4e838f869.tar tangerine-wallet-browser-695b157e7b511a94a18ada1578ece2e4e838f869.tar.gz tangerine-wallet-browser-695b157e7b511a94a18ada1578ece2e4e838f869.tar.bz2 tangerine-wallet-browser-695b157e7b511a94a18ada1578ece2e4e838f869.tar.lz tangerine-wallet-browser-695b157e7b511a94a18ada1578ece2e4e838f869.tar.xz tangerine-wallet-browser-695b157e7b511a94a18ada1578ece2e4e838f869.tar.zst tangerine-wallet-browser-695b157e7b511a94a18ada1578ece2e4e838f869.zip |
Intergrate ENS with IPFS
Diffstat (limited to 'app/loading.html')
-rw-r--r-- | app/loading.html | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/app/loading.html b/app/loading.html new file mode 100644 index 000000000..bbf1c1b4e --- /dev/null +++ b/app/loading.html @@ -0,0 +1,35 @@ +<html> +<head> + <title>Portal Network</title> + <style> + #div-logo { + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + width: 256px; + } + #logo { + width: 100%; + animation: pulse 1s ease-in-out infinite; + } + @keyframes pulse { + 0% { + opacity: 1; + } + 50% { + opacity: 0.5; + transform: scale(0.95, 0.95); + } + 100% { + opacity: 1; + } + } + </style> +</head> +<body> + <div id="div-logo"> + <img id="logo" src="./images/loginglogo.svg"> + </div> +</body> +</html> |