Ver Mensaje Individual
  #15 (permalink)  
Antiguo 27/07/2012, 11:38
Jg23
 
Fecha de Ingreso: mayo-2012
Ubicación: República Dominicana
Mensajes: 37
Antigüedad: 11 años, 10 meses
Puntos: 4
Respuesta: Scrollbar en CSS3?

disculpen, pero si es posible, el css 3 permite cambiar la barra de navegación

Código:
/* Scrollbar */

::-webkit-scrollbar 
{	
	height: 20px;
	overflow: visible;
	width: 10px;
}

::-webkit-scrollbar-thumb:vertical,
::-webkit-scrollbar-thumb:horizontal 
{	
	background-color: rgba(0, 0, 0, .4);
	background-clip: padding-box;
	border-radius: 5px;
	cursor: pointer;
	display: block;
	min-height: 30px;
}

::-webkit-scrollbar-thumb:vertical:hover,
::-webkit-scrollbar-thumb:horizontal:hover 
{
	background-color: rgba(0, 0, 0, .8);
}

::-webkit-scrollbar-button 
{
	height: 0;
	width: 0;
}

::-webkit-scrollbar-track 
{	
	background-clip: padding-box;
	border-width: 0 0 0 4px;
	border: solid transparent;
}

::-webkit-scrollbar-track:hover
{
	background-color: #F5F5F5;
}

::-webkit-scrollbar-track-piece 
{
	background-clip: padding-box;	
	background-color: white;
}

::-webkit-scrollbar-track-piece:hover
{
	background-color: #F5F5F5;
}
Este es un ejemplo, aquí hay un demo : http://infosmart.mx saludos Jg.