It looks like you're new here. If you want to get involved, click one of these buttons!
.blink { -webkit-animation: blinker 1s linear infinite; animation: blinker 1s linear infinite; } @-webkit-keyframes blinker { 50% { opacity: 0; } } @keyframes blinker { 50% { opacity: 0; } }
.blink { -webkit-animation: blinker 1s step-end infinite; animation: blinker 1s step-end infinite; } @-webkit-keyframes blinker { 50% { visibility: hidden; } } @keyframes blinker { 50% { visibility: hidden; } }
@ /* Using HTML markup. */ <span class="blink">See some blinking text.</span>
Comments
CSS for a blink that fades in/out: (goes in your Story Stylesheet)
CSS for a blink that pops in/out: (goes in your Story Stylesheet)
Usage: (for both)
I am really grateful for the help.