V
V
Victor Poltoratsky2020-02-28 16:14:42
css
Victor Poltoratsky, 2020-02-28 16:14:42

Need help, after animating the input, the select that goes to the input becomes below it (all in the photo)?

Here's the problem!!
I made an animation of the input in the registration field, here is a simple animation

.line-1-1 {
 animation-duration: 1s;
 animation-fill-mode: both;
 animation-name: line;
}

.line-1-2 {
 animation-duration: 2s;
 animation-fill-mode: both;
 animation-name: line;
}

.line-2-1 {
 animation-duration: 2.5s;
 animation-fill-mode: both;
 animation-name: line;
}

.line-2-2 {
 animation-duration: 3.5s;
 animation-fill-mode: both;
 animation-name: line;
}

.line-3-1 {
 animation-duration: 4.5s;
 animation-fill-mode: both;
 animation-name: line;
}

.line-3-2 {
 animation-duration: 5.5s;
 animation-fill-mode: both;
 animation-name: line;
}

.line-4-1 {
 animation-duration: 6.5s;
 animation-fill-mode: both;
 animation-name: line;
}

.line-4-2 {
 animation-duration: 7.5s;
 animation-fill-mode: both;
 animation-name: line;
}

@keyframes line {
 from {
  opacity: 0;
 }

 50% {
  opacity: 0;
 }

 to {
  opacity: 0.99;
 }
}

The problem is that the select (see photo) when it exits, becomes under the input
5e5911f630f18358562205.png

. I understand that this is happening because I set the opacity of the input, but in the case when I set the opacity of the select higher than that of the input, nothing happens .

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question