0
I have this code that makes an animation of images ascending infinitely, but it doesn’t happen this, as I could arrange for it to have the same effect of this site
http://www.guiacatalao.com.br/empresa/pizza-food-a-pizza-no-cone,Tnpbeu1bpt0.html
.tech-slideshow {
height: 200px;
max-width:400px;
margin: 0 auto;
position: relative;
overflow: hidden;
transform: translate3d(0, 0, 0);
}
.tech-slideshow > div {
height: 200px;
width: 200px;
background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/3/collage.jpg);
position: absolute;
top: 0;
left: 0;
height: 100%;
transform: translate3d(0, 0, 0);
}
.tech-slideshow .mover-1 {
animation: moveSlideshow 12s linear infinite;
}
.tech-slideshow .mover-2 {
opacity: 0;
transition: opacity 0.5s ease-out;
background-position: 0 -200px;
animation: moveSlideshow 15s linear infinite;
}
.tech-slideshow:hover .mover-2 {
opacity: 1;
}
@keyframes moveSlideshow {
100% {
transform: translatey(-66.6666%);
}
}
<div class="tech-slideshow">
<div class="mover-1"></div>
<div class="mover-2"></div>
</div>
in jquery got so
I think I would have to use Javascript for this, preferably jQuery.
– Sam
also think, as it would with jquery?
– Wagner Martins Bodyboard
I saw that there are several black and white and colored images. What would be the order?
– Sam
actually there the image is whole, would be 3 images one below the other rotating up
– Wagner Martins Bodyboard
econtrei esse http://jsfiddle.net/pG8kt/ but goes pro, side like I do to go up?
– Wagner Martins Bodyboard
I see here blz.
– Sam
Blazaa, I see something here
– Wagner Martins Bodyboard
That model I made you with CSS didn’t work?
– hugocsl