Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kdevo/osprey-delight.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--assets/sass/_animation.scss23
1 files changed, 19 insertions, 4 deletions
diff --git a/assets/sass/_animation.scss b/assets/sass/_animation.scss
index aa93432..2a1990c 100644
--- a/assets/sass/_animation.scss
+++ b/assets/sass/_animation.scss
@@ -33,6 +33,14 @@
}
}
+.scale-in-center {
+ animation: scale-in-center .3s cubic-bezier(.25, .46, .45, .94) both;
+}
+
+.scale-out-center {
+ animation: scale-out-center .4s cubic-bezier(.895, .03, .685, .22) both;
+}
+
// .cursor {
// animation: 1s blink step-end infinite;
// }
@@ -41,10 +49,17 @@
animation: 1.2s blink infinite;
}
-.scale-in-center {
- animation: scale-in-center .3s cubic-bezier(.25, .46, .45, .94) both;
+.blur-up {
+ -webkit-filter: blur(3px);
+ filter: blur(3px);
+ transition: filter 600ms, -webkit-filter 600ms;
}
-.scale-out-center {
- animation: scale-out-center .4s cubic-bezier(.895, .03, .685, .22) both;
+.blur-up.lazyloaded {
+ -webkit-filter: blur(0);
+ filter: blur(0);
}
+
+.logo-anim {
+ animation: scale-in-center .8s cubic-bezier(.25, .46, .45, .94) both;
+} \ No newline at end of file