Регистрация Войти
Войти через VK Войти через FB Войти через Google Войти через Яндекс
Войти через VK Войти через FB Войти через Google Войти через Яндекс
Поиск по сайту
CSS-анимация
Исходный код этого примера:
<style>
.sky {
position: relative;
width: 700px;
height: 300px;
background-color: #deebec;
overflow: hidden;
}
.cloud {
background: url(../cloud.png);
width: 698px;
height: 323px;
position: absolute;
right: -100%;
top: 0;
animation: cloud 15s linear infinite;
}
@keyframes cloud {
from { right: -100%; top: -50%; }
to { right: 100%; top: 0; }
}
</style>
<div class="sky">
<div class="cloud"></div>
</div>
.
Прокомментировать/Отблагодарить