Foros del Web » Creando para Internet » CSS »

link scrolling photobanner

Estas en el tema de link scrolling photobanner en el foro de CSS en Foros del Web. hola estoy usando este codigo http://designshack.net/articles/css/...tephotobanner/ para un scroll de imagenes pero no puedo agregarles link, hao esto y no funciona que puede ser? Código: ...
  #1 (permalink)  
Antiguo 09/03/2014, 11:05
 
Fecha de Ingreso: enero-2012
Mensajes: 224
Antigüedad: 12 años, 3 meses
Puntos: 1
link scrolling photobanner

hola estoy usando este codigo

http://designshack.net/articles/css/...tephotobanner/

para un scroll de imagenes pero no puedo agregarles link, hao esto y no funciona que puede ser?
Código:


 <div id="container">
	
	    
	    <div class="photobanner">
	    	<a href="http://67.23.231.40/~baldia/?page_id=101&hor=1">	<img src="wp-content/themes/brownaldia/img/01.jpg" class="first"></a>
	<a href="http://67.23.231.40/~baldia/?page_id=101&hor=2"><img src="wp-content/themes/brownaldia/img/02.jpg" ></a>
	<a href="http://67.23.231.40/~baldia/?page_id=101&hor=3"><img src="wp-content/themes/brownaldia/img/03.jpg" ></a>
	<a href="http://67.23.231.40/~baldia/?page_id=101&hor=3"><img src="wp-content/themes/brownaldia/img/04.jpg" ></a>
	<img src="wp-content/themes/brownaldia/img/05.jpg" >
	<img src="wp-content/themes/brownaldia/img/06.jpg" >
	<img src="wp-content/themes/brownaldia/img/07.jpg" >
	<img src="wp-content/themes/brownaldia/img/08.jpg" >
	<img src="wp-content/themes/brownaldia/img/09.jpg" >
	<img src="wp-content/themes/brownaldia/img/10.jpg" >
	<img src="wp-content/themes/brownaldia/img/11.jpg" >
	<img src="wp-content/themes/brownaldia/img/12.jpg" >
	<img src="wp-content/themes/brownaldia/img/01.jpg" >
	<img src="wp-content/themes/brownaldia/img/02.jpg" >
	<img src="wp-content/themes/brownaldia/img/03.jpg" >

	    </div>
	</div>

css


Código:


#container {
    width: 960px;
    overflow: hidden;
    margin: 20px auto 0 auto;
    background: white;
}


/*photobanner*/
 
.photobanner {
    height: 100px;
    width: 3550px;

}


/*keyframe animations*/
.first {
    -webkit-animation: bannermove 30s linear infinite;
       -moz-animation: bannermove 30s linear infinite;
        -ms-animation: bannermove 30s linear infinite;
         -o-animation: bannermove 30s linear infinite;
            animation: bannermove 30s linear infinite;
}
 
@keyframes "bannermove" {
 0% {
    margin-left: 0px;
 }
 100% {
    margin-left: -2125px;
 }
 
}
 
@-moz-keyframes bannermove {
 0% {
   margin-left: 0px;
 }
 100% {
   margin-left: -2125px;
 }
 
}
 
@-webkit-keyframes "bannermove" {
 0% {
   margin-left: 0px;
 }
 100% {
   margin-left: -2125px;
 }
 
}
 
@-ms-keyframes "bannermove" {
 0% {
   margin-left: 0px;
 }
 100% {
   margin-left: -2125px;
 }
 
}
 
@-o-keyframes "bannermove" {
 0% {
   margin-left: 0px;
 }
 100% {
   margin-left: -2125px;
 }
 
}


.photobanner {
    height: 100px;
    width: 3550px;
  
}
 
.photobanner img {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
	max-width:50px;
	padding: 0 30px 0 30px;
}
 
.photobanner img:hover {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    cursor: pointer;
 
    -webkit-box-shadow: 0px 3px 5px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 3px 5px rgba(0,0,0,0.2);
    box-shadow: 0px 3px 5px rgba(0,0,0,0.2);
}

.photobanner:hover .first{
    -webkit-animation-play-state:paused;
    -moz-animation-play-state:paused;
    -ms-animation-play-state:paused;
    animation-play-state:paused;
}
  #2 (permalink)  
Antiguo 09/03/2014, 12:57
Avatar de pzin
Moderata 😈
 
Fecha de Ingreso: julio-2002
Ubicación: Islas Canarias
Mensajes: 10.488
Antigüedad: 21 años, 8 meses
Puntos: 2114
Respuesta: link scrolling photobanner

Pues seguramente tengas que cambiar algún que otro estilo que esté aplicado a las imágenes para que sean aplicados a los enlaces.

Etiquetas: background, hover, imagenes, link, scrolling
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 03:23.