XenForo Tooltip animation

wikislo

Registered
Here is the code add this extra.less

CSS:
.tooltip--preview .tooltip-content-inner .bbWrapper {
    animation: XVtooltipScroll 3s linear;
    animation-fill-mode: forwards;
    animation-delay: 0.5s
}

@keyframes XVtooltipScroll {
    100% {
        transform: translateY(max(-50%, -400px))
    }
}
 

Attachments

  • tooltip--preview animation.gif
    tooltip--preview animation.gif
    4.6 MB · Views: 69

argument

Registered
Here is the code add this extra.less

CSS:
.tooltip--preview .tooltip-content-inner .bbWrapper {
    animation: XVtooltipScroll 3s linear;
    animation-fill-mode: forwards;
    animation-delay: 0.5s
}

@keyframes XVtooltipScroll {
    100% {
        transform: translateY(max(-50%, -400px))
    }
}
The code does not work for xenforo 2.3
 
Back
Top Bottom