<style> p { animation: blink 400ms alternate infinite; } @keyframes blink { from { opacity: 1; } to { opacity: 0; } } </style> <p>Какой-то текст</p>