Javascript.RU

Создать новую тему Ответ
 
Опции темы Искать в теме
  #1 (permalink)  
Старый 17.04.2020, 13:27
MOT MOT вне форума
Аспирант
Отправить личное сообщение для MOT Посмотреть профиль Найти все сообщения от MOT
 
Регистрация: 30.08.2019
Сообщений: 52

backgroundImage из div'ов
Доброго времени суток! Есть идея по созданию двойных обоев на сайте. Первый (нижний слой) - просто сплошной цвет, а второй - div с @keyframes. Как реализовать это на js, если backgroundImage не вариант ?
Тот самый div:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
background: #003366;
}
.star {
width: 18px;
height: 18px;
border: 1px solid transparent;
position: relative;
}
.star > * {
position: absolute;
background: white;
width: 2px;
height: 2px;
}
.point1 {
animation: p1 linear infinite 1.5s;
left: 8px;
}
.point2 {
animation: p2 linear infinite 1.5s;
top: 8px;
}
.point3 {
left: 8px;
animation: p3 linear infinite 1.5s;
}
.point4 {
animation: p4 linear infinite 1.5s;
top: 8px;
}
.point5 {
animation: p5 linear infinite 1.5s;
}
.point6 {
animation: p6 linear infinite 1.5s;
}
.point7 {
animation: p7 linear infinite 1.5s;
}
.point8 {
animation: p8 linear infinite 1.5s;
}
@keyframes p1 {
0% {
top: 8px;
}
25% {
top: 0px;
height: 6px;
}
50% {
top: 0px;
height: 2px;
}
75% {
top: 0px;
height: 6px
}
100% {
top: 8px;
height: 2px;
}
}
@keyframes p2 {
0% {
right: 8px;
}
25% {
right: 0px;
width: 6px;
}
50% {
right: 0px;
width: 2px
}
75% {
right: 0px;
width: 6px;
}
100% {
right: 8px;
width: 2px;
}
}
@keyframes p3 {
0% {
bottom: 8px;
}
25% {
bottom: 0px;
height: 6px;
}
50% {
bottom: 0px;
height: 2px;
}
75% {
bottom: 0px;
height: 6px
}
100% {
bottom: 8px;
height: 2px;
}
}
@keyframes p4 {
0% {
left: 8px;
}
25% {
left: 0px;
width: 6px;
}
50% {
left: 0px;
width: 2px
}
75% {
left: 0px;
width: 6px;
}
100% {
left: 8px;
width: 2px;
}
}
@keyframes p5 {
0% {
left: 8px;
top: 8px;
}
25% {
left: 8px;
top: 8px;
}
50% {
left: 2px;
top: 2px;
}
75% {
left: 8px;
top: 8px;
}
100% {
left: 8px;
top: 8px;
}
}
@keyframes p6 {
0% {
right: 8px;
top: 8px;
}
25% {
right: 8px;
top: 8px;
}
50% {
right: 2px;
top: 2px;
}
75% {
right: 8px;
top: 8px;
}
100% {
right: 8px;
top: 8px;
}
}
@keyframes p7 {
0%{
right: 8px;
bottom: 8px;
}
25% {
right: 8px;
bottom: 8px;
}
50% {
right: 2px;
bottom: 2px;
}
75% {
right: 8px;
bottom: 8px;
}
100% {
right: 8px;
bottom: 8px;
}
}
@keyframes p8 {
0%{
left: 8px;
bottom: 8px;
}
25% {
left: 8px;
bottom: 8px;
}
50% {
left: 2px;
bottom: 2px;
}
75% {
left: 8px;
bottom: 8px;
}
100% {
left: 8px;
bottom: 8px;
}
}
</style>
</head>
<body>
<div class="star">
<div class="point1"></div>
<div class="point2"></div>
<div class="point3"></div>
<div class="point4"></div>
<div class="point5"></div>
<div class="point6"></div>
<div class="point7"></div>
<div class="point8"></div>
</div>
</body>
</html>
Ответить с цитированием
Ответ



Опции темы Искать в теме
Искать в теме:

Расширенный поиск


Похожие темы
Тема Автор Раздел Ответов Последнее сообщение
Зацикленное добавление div'ов. Bamberg Элементы интерфейса 3 17.02.2017 17:12
backgroundImage в методе .css() Алек jQuery 7 29.06.2013 16:33
Выравнивания DIVов по высоте Undecided Events/DOM/Window 11 17.06.2012 21:24
Обновление div'ов lor08 AJAX и COMET 4 25.06.2011 20:11
backgroundImage MegaGoblin Общие вопросы Javascript 8 28.04.2010 18:50