|
@@ -4,20 +4,36 @@
|
|
|
|
|
|
// Pulse Animation
|
|
|
.pulse {
|
|
|
- animation-name: pulse_animation;
|
|
|
- animation-duration: 2000ms;
|
|
|
- transform-origin:70% 70%;
|
|
|
- animation-iteration-count: infinite;
|
|
|
- animation-timing-function: linear;
|
|
|
+ -webkit-animation-name: pulse_animation;
|
|
|
+ animation-name: pulse_animation;
|
|
|
+ -webkit-animation-duration: 2000ms;
|
|
|
+ animation-duration: 2000ms;
|
|
|
+ -webkit-transform-origin:70% 70%;
|
|
|
+ transform-origin:70% 70%;
|
|
|
+ -webkit-animation-iteration-count: infinite;
|
|
|
+ animation-iteration-count: infinite;
|
|
|
+ -webkit-animation-timing-function: linear;
|
|
|
+ animation-timing-function: linear;
|
|
|
+}
|
|
|
+
|
|
|
+@-webkit-keyframes pulse_animation {
|
|
|
+ 0% { -webkit-transform: scale(1); transform: scale(1); }
|
|
|
+ 30% { -webkit-transform: scale(1); transform: scale(1); }
|
|
|
+ 40% { -webkit-transform: scale(1.08); transform: scale(1.08); }
|
|
|
+ 50% { -webkit-transform: scale(1); transform: scale(1); }
|
|
|
+ 60% { -webkit-transform: scale(1); transform: scale(1); }
|
|
|
+ 70% { -webkit-transform: scale(1.05); transform: scale(1.05); }
|
|
|
+ 80% { -webkit-transform: scale(1); transform: scale(1); }
|
|
|
+ 100% { -webkit-transform: scale(1); transform: scale(1); }
|
|
|
}
|
|
|
|
|
|
@keyframes pulse_animation {
|
|
|
- 0% { transform: scale(1); }
|
|
|
- 30% { transform: scale(1); }
|
|
|
- 40% { transform: scale(1.08); }
|
|
|
- 50% { transform: scale(1); }
|
|
|
- 60% { transform: scale(1); }
|
|
|
- 70% { transform: scale(1.05); }
|
|
|
- 80% { transform: scale(1); }
|
|
|
- 100% { transform: scale(1); }
|
|
|
+ 0% { -webkit-transform: scale(1); transform: scale(1); }
|
|
|
+ 30% { -webkit-transform: scale(1); transform: scale(1); }
|
|
|
+ 40% { -webkit-transform: scale(1.08); transform: scale(1.08); }
|
|
|
+ 50% { -webkit-transform: scale(1); transform: scale(1); }
|
|
|
+ 60% { -webkit-transform: scale(1); transform: scale(1); }
|
|
|
+ 70% { -webkit-transform: scale(1.05); transform: scale(1.05); }
|
|
|
+ 80% { -webkit-transform: scale(1); transform: scale(1); }
|
|
|
+ 100% { -webkit-transform: scale(1); transform: scale(1); }
|
|
|
}
|