Skip to content

Restore <blink> Tag by bomberfish

Details

Authorbomberfish

LicenseGPLv3

Category*

Created

Updated

Size749 B

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

Restores <blink> functionality on websites that somehow still use it.

Notes

Userstyle doesn't have notes.

Source code

/* ==UserStyle==
@name           Restore <blink> Tag
@namespace      github.com/openstyles/stylus
@version        1.0.1
@description    Restores <blink> functionality on websites that somehow still use it.
@author         BomberFish
@var select type "Blink type" ["blink:Blink", "fade:Fade"]
==/UserStyle== */
@-moz-document regexp(".*") {
    @keyframes blink {
        0% {
            visibility: hidden;
        }

        50% {
            visibility: hidden;
        }

        100% {
            visibility: visible;
        }
    }

    @keyframes fade {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    blink {
        animation: 0.5s linear infinite alternate var(--type);
    }
}

Reviews

No reviews yet.