Показать сообщение отдельно
  #8 (permalink)  
Старый 25.02.2016, 14:10
Аватар для рони
Профессор
Отправить личное сообщение для рони Посмотреть профиль Найти все сообщения от рони
 
Регистрация: 27.05.2010
Сообщений: 33,124

destus,
<!DOCTYPE HTML>

<html>

<head>
  <title>Untitled</title>
  <style type="text/css">
  div{
    width:100px;
    height:100px;

	-webkit-animation: color 5s ease-in-out infinite alternate;
	-moz-animation: color 5s ease-in-out infinite alternate;
	-o-animation: color 5s ease-in-out infinite alternate;
	animation: color 5s ease-in-out infinite alternate;
  }

  @keyframes color {
0%{
         background-color:  #000000;
      }

   100%{
     background-color: #FFFFFF;
   }

}
@-webkit-keyframes color {
0%{
         background-color:  #000000;
      }

   100%{
     background-color: #FFFFFF;
   }
}


  </style>
</head>

<body>
<div></div>

</body>

</html>
Ответить с цитированием