XenForo 2.0 tooltip--preview animation

wallas

Collaborate
Collaborate
Registered
Joined
May 20, 2021
Messages
195
Points
153

Reputation:

tooltip--preview animation.gif


Hello,

I came across a solution on a website that I would also like to use.
The point is that it scrolls the content up within the tooltip.

Here is the code snippet:

Less:
.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))
    }
}

Please let me know if you know the addon or the full working code.

Thanks. :)
 
Last edited:

wallas

Collaborate
Collaborate
Registered
Joined
May 20, 2021
Messages
195
Points
153

Reputation:

View attachment 36720

Hello,

I came across a solution on a website that I would also like to use.
The point is that it scrolls the content up within the tooltip.

Here is the code snippet:

Less:
.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))
    }
}

Please let me know if you know the addon or the full working code.

Thanks. :)
wallas
Solved. Here is the code to use. If you want to use it, add it to the extra.less file.

Less:
// tooltip scroll
.tooltip--preview .tooltip-content-inner .bbWrapper {
    animation: tooltipScroll 3s linear;
    animation-fill-mode: forwards;
    animation-delay: 0.3s
}

@keyframes tooltipScroll {
    100% {
        transform: translateY(-250px)
    }
}
 
Top