nodle

Customer
Good morning @Russ . Is there a code using .css to make the little pop up number blink or pulse? I swear I used to have one but can't find it. I thought it was similar to this:


Thanks @Russ , I hope you had a great Thanksgiving.
 
This would cause the alert bubbles to pulse in the account area:

Code:
.p-navgroup-link.badgeContainer:after
{
    box-shadow: 0 0 0 0 fade(@xf-paletteAccent3, 20%);
    -webkit-animation: pulse 1.5s infinite;
}
@-webkit-keyframes pulse
{
    70%
    {
        box-shadow: 0 0 0 20px rgba(90, 153, 212, 0);
    }
    100%
    {
        box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
    }
}
 

Pre-Sale Questions

If you have any questions or concerns you want to ask before you make a purchase don't hesitate to use one of our multiple support channels for your convenience.

Back