Advertisement
Guest User

Untitled

a guest
Feb 7th, 2016
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. <style>
  2. #blink1 {
  3. -webkit-animation: blink1 3s linear infinite;
  4. animation: blink1 3s linear infinite;
  5. }
  6. @-webkit-keyframes blink1 {
  7. 0% { color: rgba(34, 34, 34, 1); }
  8. 50% { color: rgba(34, 34, 34, 0); }
  9. 100% { color: rgba(34, 34, 34, 1); }
  10. }
  11. @keyframes blink1 {
  12. 0% { color: rgba(34, 34, 34, 1); }
  13. 50% { color: rgba(34, 34, 34, 0); }
  14. 100% { color: rgba(34, 34, 34, 1); }
  15. }
  16. </style>
  17.  
  18. <h2 id="blink1">Мигающий Текст</h2>
  19. <p id="blink1">Мигающий Текст</p>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement