Add .blink class for super annoying blink effect.

This commit is contained in:
Kevin Dungs
2014-08-11 17:04:56 +02:00
parent 18de4cd070
commit c452bc52cf
+13
View File
@@ -112,3 +112,16 @@ h1 br {
[ng\:cloak], [ng-cloak], .ng-cloak {
display: none !important;
}
.blink {
animation: blinker 1.0s cubic-bezier(.5, 0, 1, 1) infinite alternate;
-webkit-animation: blinker 1.0s cubic-bezier(.5, 0, 1, 1) infinite alternate;
}
@keyframes blinker {
from { opacity: 1; }
to { opacity: 0.25; }
}
@-webkit-keyframes blinker {
from { opacity: 1; }
to { opacity: 0.25; background: #f00; }
}