Alguém me ajuda com o Getwaves #2159
Unanswered
Squ3let0n
asked this question in
Perguntas e Respostas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Fiz a animação das ondas porém elas não completaram na tela, ficaram faltando espaços, elas tocam na ponta da tela e voltam, era pra essas ondas serem infinitas mas não consegui isso, se alguém souber como resolver, me explique por favor, codigo do html e css abaixo

HTML:
CSS:
body{
font: 20px Arial, sans-serif;
}
.navbar{
background-color: rgb(66, 66, 82);
padding-left: 10px;
}
.quemeusou{
background-color: rgb(3, 75, 97);
color: white;
background-repeat: no-repeat;
background-size: cover;
background-position: 0px;
padding-left: 300px;
padding-bottom: 10cm;
position: static;
padding-top: 40px;
opacity: 100%;
}
.padding{
padding-top: 200px;
margin: auto;
}
.footer{
font-size: small;
padding-top: 120px;
padding-left: 5px;
}
.conteudo1{
width: 200px;
height: 40px;
color: rgb(255, 255, 255);
background-color: rgb(0, 255, 13);
background-repeat: no-repeat;
background-size:auto;
border-radius: 10px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.texto{
padding-left: 200px;
}
.margin{
margin-top: 0px;
padding-left: 10px;
}
.Certificados{
background-color: rgb(66, 129, 138);
height: 41px;
width: 100%;
}
.row{
background-color: rgb(78, 129, 138);
}
.imagemmeio{
padding-bottom: 0px;
padding-top: 0px;
}
.waves{
position: absolute;
padding-top: 21mm;
bottom: auto;
left: 0;
right: 0;
}
.wave1{
animation: movewaves1 3s ease-in-out infinite alternate;
}
@Keyframes movewaves1 {
from {
transform: translateX(-2000px);
}
}
.wave2{
animation: movewaves2 3s 1.2s ease-in-out infinite alternate;
}
@Keyframes movewaves2 {
from {
transform: translateX(-1800px);
}
}
.wave3{
animation: movewaves3 3s ease-in-out infinite alternate;
}
@Keyframes movewaves3 {
from {
transform: translateX(-1600px);
}
}
Beta Was this translation helpful? Give feedback.
All reactions