Guest User

Untitled

a guest
Dec 12th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. /* Светофор на css анимациях */
  2. .light {
  3. width: 200px;
  4. height: 450;
  5.  
  6. background-color: #000;
  7. }
  8.  
  9. .circle {
  10. width: 150px;
  11. height: 150px;
  12. margin: auto;
  13.  
  14. border-radius: 150px;
  15. background-color: grey;
  16. }
  17.  
  18. .red { animation: red 4.5s infinite; }
  19. .orange { animation: orange 4.5s infinite; }
  20. .green { animation: green 4.5s infinite; }
  21.  
  22. @keyframes red {
  23. 0% {
  24. background-color: red;
  25. }
  26.  
  27. 22.2%{
  28. background-color: red;
  29. }
  30.  
  31. 33.3% {
  32. background-color: grey;
  33. }
  34. 88.8%{
  35. background-color: grey;
  36. }
  37. 100%{
  38. background-color: red;
  39. }
  40.  
  41. }
  42.  
  43. @keyframes orange {
  44. 0%{
  45. background-color: grey;
  46. }
  47. 22.2% {
  48. background-color: grey;
  49. }
  50. 33.3% {
  51. background-color: orange;
  52. }
  53. 55.5% {
  54. background-color: orange;
  55. }
  56. 66.6% {
  57. background-color: grey;
  58. }
  59. }
  60.  
  61.  
  62. @keyframes green {
  63. 0% {
  64. background-color: grey;
  65. }
  66. 55.5% {
  67. background-color: grey;
  68. }
  69. 66.6% {
  70. background-color: green;
  71. }
  72. 88.8% { background-color: green;
  73. }
  74.  
  75. 100% {
  76. background-color: grey;
  77. }
  78. }
Add Comment
Please, Sign In to add comment