
diff --git a/.gitignore b/.gitignore index c2658d7..a5199f6 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ node_modules/ +.idea \ No newline at end of file diff --git a/css/load10.css b/css/load10.css new file mode 100644 index 0000000..c326347 --- /dev/null +++ b/css/load10.css @@ -0,0 +1,53 @@ +.load10 .loader:before, +.load10 .loader:after { + border-radius: 50%; + width: 1.5em; + height: 1.5em; + background: #fff; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation: load10 4s infinite ease-in-out; + animation: load10 4s infinite ease-in-out; +} +.load10 .loader { + font-size: 10px; + text-indent: -9999em; + margin: 8em 2.5em 0 1em; +} +.load10 .loader:before { + left: 0em; + -webkit-animation-delay: 0.2s; + animation-delay: 0.2s; +} +.load10 .loader:after { + left: 0em; + -webkit-animation-delay: 0.4s; + animation-delay: 0.4s; +} +.load10 .loader:before, +.load10 .loader:after { + content: ''; + position: absolute; +} +@-webkit-keyframes load10 { + 0% { + left: 0; + } + 50% { + left: 100%; + } + 100% { + left: 0; + } +} +@keyframes load10 { + 0% { + left: 0; + } + 50% { + left: 100%; + } + 100% { + left: 0; + } +} diff --git a/css/load9.css b/css/load9.css new file mode 100644 index 0000000..741fd4c --- /dev/null +++ b/css/load9.css @@ -0,0 +1,71 @@ +.load9 .loader:before, +.load9 .loader:after, +.load9 .loader { + border-radius: 50%; + width: 2.5em; + height: 2.5em; + background: #fff; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation: load9 2s infinite ease-in-out; + animation: load9 2s infinite ease-in-out; +} +.load9 .loader { + margin: 8em auto; + font-size: 10px; + position: relative; + text-indent: -9999em; +} +.load9 .loader:before { + left: -4em; + -webkit-animation-delay: -0.5s; + animation-delay: -0.5s; +} +.load9 .loader:after { + left: 0em; + -webkit-animation-delay: -1s; + animation-delay: -1s; +} +.load9 .loader:before, +.load9 .loader:after { + content: ''; + position: absolute; +} +@-webkit-keyframes load9 { + 0% { + left: -4em; + } + 25% { + width: 3em; + height: 3em; + } + 50% { + left: 4em; + } + 75% { + width: 2.5em; + height: 2.5em; + } + 100% { + left: -4em; + } +} +@keyframes load9 { + 0% { + left: -4em; + } + 25% { + width: 3em; + height: 3em; + } + 50% { + left: 4em; + } + 75% { + width: 2.5em; + height: 2.5em; + } + 100% { + left: -4em; + } +} diff --git a/index.html b/index.html index 31edb6b..2c25595 100644 --- a/index.html +++ b/index.html @@ -1,4 +1,4 @@ -
