tengo un problema con el timing del slideshow de una web, pasa muy lento y necesito acelerar el cambio de imagen a imagen, saben como podria modificarlo? intente en el css de la web (es one page) en la parte de este còdigo:
Código CSS :
.nbs-flexisel-item:hover img {
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
-webkit-transform: scale(1, 1);
-moz-transform: scale(1, 1);
-ms-transform: scale(1, 1);
-o-transform: scale(1, 1);
transform: scale(1, 1);
}
.nbs-flexisel-item img {
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.nbs-flexisel-item a {
width: 100%;
height: 100%;
display: block;
position: relative;
}
.nbs-flexisel-item a:after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
visibility: hidden;
-webkit-transition: all 0.2s ease;
-moz-transition: all 0.2s ease;
-ms-transition: all 0.2s ease;
-o-transition: all 0.2s ease;
transition: all 0.2s ease;
background: rgba(0, 0, 0, 0);
}
.ie8 .nbs-flexisel-item a:after {
background: url('../images/header_bgr.png') repeat 0 0;
}
.nbs-flexisel-item a:hover:after {
visibility: visible;
background: rgba(0, 0, 0, 0.4);
}
.nbs-flexisel-item img {
width: 100%;
}
/*** Navigation ***/
.nbs-flexisel-nav-left,
.nbs-flexisel-nav-right {
position: absolute;
top: 0 !important;
height: 100%;
width: 50px;
display: block;
z-index: 1000;
cursor: pointer;Estoy en el lugar correcto? cómo pudo configurarlo con otro tiempo?
Saludos
