Advertisement
chernov2000

Моргающий значек

Aug 24th, 2022
1,168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.75 KB | None | 0 0
  1.         #p_11{
  2.             position: relative;
  3.         }
  4.        #p_11:after{
  5.         position: absolute;
  6.         top: -19px;
  7.         width: 30px;
  8.         height: 30px;
  9.         content:url('https://texrio.ru/upload/new32.png');
  10.         opacity: 1;
  11.  
  12.   animation-name: blinker;
  13.   animation-iteration-count: infinite;
  14.   animation-timing-function: cubic-bezier(1.0,0,0,1.0);
  15.   animation-duration: 2s;
  16.   -webkit-animation-name: blinker;
  17.   -webkit-animation-iteration-count: infinite;
  18.   -webkit-animation-timing-function: cubic-bezier(1.0,0,0,1.0);
  19.   -webkit-animation-duration: 2s;
  20. }
  21.  
  22. @keyframes blinker {
  23.   from { opacity: 1.0; }
  24.   to { opacity: 0.0; }
  25. }
  26.  
  27. @-webkit-keyframes blinker {
  28.   from { opacity: 1.0; }
  29.   to { opacity: 0.0; }
  30.        }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement