|
|
@@ -11,14 +11,56 @@
|
|
|
position: absolute;
|
|
|
}
|
|
|
.basic-container{
|
|
|
- animation: slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
|
|
|
+ //animation: heartbeat 1.5s ease-in-out both;
|
|
|
}
|
|
|
-@keyframes slide-top {
|
|
|
- 0% {
|
|
|
- transform: translateY(-30px);
|
|
|
+.avue-tags {
|
|
|
+ -webkit-user-select: none;
|
|
|
+ -moz-user-select: none;
|
|
|
+ -ms-user-select: none;
|
|
|
+ user-select: none;
|
|
|
+ position: relative;
|
|
|
+ padding: 10px 10px;
|
|
|
+ margin-bottom: 10px;
|
|
|
+ -webkit-box-sizing: border-box;
|
|
|
+ box-sizing: border-box;
|
|
|
+ overflow: hidden;
|
|
|
+ border-radius: 10px;
|
|
|
+ border-top: 1px solid #f6f6f6;
|
|
|
+ background-color: #fff;
|
|
|
+}
|
|
|
+@keyframes heartbeat {
|
|
|
+ from {
|
|
|
+ -webkit-transform: scale(1);
|
|
|
+ transform: scale(1);
|
|
|
+ -webkit-transform-origin: center center;
|
|
|
+ transform-origin: center center;
|
|
|
+ -webkit-animation-timing-function: ease-out;
|
|
|
+ animation-timing-function: ease-out;
|
|
|
+ }
|
|
|
+ 10% {
|
|
|
+ -webkit-transform: scale(0.91);
|
|
|
+ transform: scale(0.91);
|
|
|
+ -webkit-animation-timing-function: ease-in;
|
|
|
+ animation-timing-function: ease-in;
|
|
|
+ }
|
|
|
+ 17% {
|
|
|
+ -webkit-transform: scale(0.98);
|
|
|
+ transform: scale(0.98);
|
|
|
+ -webkit-animation-timing-function: ease-out;
|
|
|
+ animation-timing-function: ease-out;
|
|
|
}
|
|
|
- 100% {
|
|
|
- transform: translateY(0);
|
|
|
+ 33% {
|
|
|
+ -webkit-transform: scale(0.87);
|
|
|
+ transform: scale(0.87);
|
|
|
+ -webkit-animation-timing-function: ease-in;
|
|
|
+ animation-timing-function: ease-in;
|
|
|
+ }
|
|
|
+ 45% {
|
|
|
+ -webkit-transform: scale(1);
|
|
|
+ transform: scale(1);
|
|
|
+ -webkit-animation-timing-function: ease-out;
|
|
|
+ animation-timing-function: ease-out;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+
|