Neon Blink Text Effect in CSS
/*CSS*/
*,*::before,*::after{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
font-family: sans-serif;
width: 100%;
min-height: 100vh;
display: grid;
place-items: center;
background: #222;
}
body h1{
font-size: 3rem;
color: #FFF;
text-transform: uppercase;
animation: blinkText 1s ease-in-out infinite;
}
@keyframes blinkText{
from{
text-shadow: 0 0 10px #2cdef5,
0 0 10px #2cdef5,
0 0 10px #2cdef5,
0 0 20px #2cdef5,
0 0 20px #2cdef5,
0 0 30px #2cdef5,
0 0 40px #2cdef5,
0 0 50px #2cdef5;
}
}
Watch video Neon Blink Text Effect in CSS part 4 online, duration hours minute second in high quality that is uploaded to the channel Masters In Web Design 26 January 2022. Share the link to the video on social media so that your subscribers and friends will also watch this video. This video clip has been viewed 10 times and liked it 2 visitors.