Predefinição:Photo Slider/styles.css

De Wiki NBS
Revisão de 20h27min de 3 de agosto de 2022 por Paulo.xavier (discussão | contribs) (Criou página com '→‎CSS Image Slideshow created by CSS * * @author: Unknown * current version crafted together by [[User:Christharp]] from several CSS sites. For my website:[http://www.yellpedia.com/wiki/Main_Page Yellpedia]: .containerphoto{ height: 500px; width: 500px; overflow:hidden; position:relative; } .photoslide{ position:absolute; animation:round 20s infinite; opacity:0; } @keyframes round{ 25%{opacity:1;} 40%{opacity:0;} } img:nth-child(5){a...')
(dif) ← Edição anterior | Revisão atual (dif) | Versão posterior → (dif)
Ir para navegação Ir para pesquisar
/* CSS Image Slideshow created by CSS
 * 
 * @author: Unknown
 * current version crafted together by [[User:Christharp]] from several CSS sites. For my website:[http://www.yellpedia.com/wiki/Main_Page Yellpedia]
 */

.containerphoto{
   height: 500px;
   width: 500px;
  overflow:hidden;
  position:relative;
}

.photoslide{
  position:absolute;
  animation:round 20s infinite;
  opacity:0;
  
}
@keyframes round{   
  25%{opacity:1;}
  40%{opacity:0;}
} 

img:nth-child(5){animation-delay:0s;}
img:nth-child(4){animation-delay:4s;}
img:nth-child(3){animation-delay:8s;}
img:nth-child(2){animation-delay:12s;}
img:nth-child(1){animation-delay:16s;}