As pointed out in this comment , you can achieve this with pure css:
.tooltip > div {
animation-name: delayedFadeIn;
animation-duration: 1s;
}
@Keyframes delayedFadeIn {
0% {opacity: 0;}
75% {opacity: 0;}
100% {opacity: 1;}
}
If you want to make this optional, you can define another class, for example .delayed:
.delayed.tooltip > div {
animation-name: delayedFadeIn;
animation-duration: 1s;
}
@Keyframes delayedFadeIn {
0% {opacity: 0;}
75% {opacity: 0;}
100% {opacity: 1;}
}
source
share