#html #css
Вопрос:
Итак, я пытался создать сайт (как проект) с музеями, и я попытался добавить немного анимации, и анимация работает, но я попытался отложить ее (у меня есть 7 маленьких изображений музеев, которые идут снизу вверх в виде пузыря).
.muzee img{
width: 60px;
animation: muzee 7s linear infinite;
}
.muzee {
width: 100%;
display: flex;
align-items: center;
justify-content: space-around;
position: absolute;
bottom: -70px;
}
@keyframes muzee{
0%{
transform: translateY(0);
opacity: 0;
}
50%{
opacity: 1;
}
70%{
opacity: 1;
}
100%{
transform: translateY(-80vh);
opacity: 1;
}
}
.muzee img:nth-chlid(1){
animation-delay: 2s;
width: 25px;
}
.muzee img:nth-chlid(2){
animation-delay: 1s;
}
.muzee img:nth-chlid(3){
animation-delay: 3s;
width: 25px;
}
.muzee img:nth-chlid(4){
animation-delay: 4.5s;
}
.muzee img:nth-chlid(5){
animation-delay: 3.25s;
}
.muzee img:nth-chlid(6){
animation-delay: 6s;
width: 20px;
}
.muzee img:nth-chlid(7){
animation-delay: 7s;
width: 35px;
}
Комментарии:
1. привет, похоже, у вас там может быть опечатка
chlid
( должна бытьchild
)2. Спасибо, Опси, я действительно этого не видел, спасибо!