Como personalizar nuestra ventana
Podemos cambiar completamente el aspecto de la ventan utilizadndo nuestro propio CSS. O solo personalizar los botones, y sobre todo, personalizar los botones propios que hemos creado.
Para ello utilizamos un objeto como el siquiente:
MisOpciones = {
MainBackground: 'mainNovelty',
NoveltyGroup: 'pageNovelty',
ButtonsGroup: 'buttonsNovelty',
GeneralButtons: 'button',
ExternalButton: 'external'
};
Por defecto las opciones y sus funciones son:
- MainBackground: Indica el nombre del DIV que va a cocupar toda la pantalla.
- NoveltyGroup: Nombre del DIV, dentro del anterior, donde se van a presentar las novedades.
- ButtonGruop: Nombre dle DIV, dentro del anterior, donde se van a presentar los botones.
- GeneralButtons: Nombre de la clase CSS con los estilos generales para TODOS los botones.
- ExternalButton: Nombre de la clase CSS con el estilo para el boton con funciones personalizadas.
Estilos CSS utilizados por defecto.
El objeto novelty crea un tag < style> con la definicion de las los estilos por defecto que utiliza el widget y aqui detallamos el CSS utilizado por defecto.
#mainNovelty {
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
background: url('/novelty/ie.png');
background: -moz-linear-gradient(rgba(11, 11, 11, 0.1), rgba(11, 11, 11, 0.6)) repeat-x rgba(11, 11, 11, 0.2);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(11, 11, 11, 0.1)), to(rgba(11, 11, 11, 0.6))) repeat-x rgba(11, 11, 11, 0.2);
z-index: 100000;
}
#pageNovelty {
min-width: 460px;
background: url('/novelty/body_bg.jpg') repeat-x left bottom #e5e5e5;
position: fixed;
left: 25%;
top: 15%;
margin: -130px 0 0 -230px;
border: 1px solid rgba(33, 33, 33, 0.6);
-moz-box-shadow: 0 0 2px rgba(255, 255, 255, 0.6) inset;
-webkit-box-shadow: 0 0 2px rgba(255, 255, 255, 0.6) inset;
box-shadow: 0 0 2px rgba(255, 255, 255, 0.6) inset;
}
#pageNovelty h1, #pageNovelty h2 {
background: url('/novelty/header_bg.jpg') repeat-x left bottom #f5f5f5;
text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.6);
letter-spacing: 0.4px;
text-align: center;
}
#pageNovelty h1 {
font: 36px 'Cuprum', 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
color: #444;
}
#pageNovelty h2 {
font: 26px 'Cuprum', 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
color: #666;
}
#pageNovelty h3, #pageNovelty h4, #pageNovelty h5, #pageNovelty h6 {
text-align: center;
letter-spacing: 0.3px;
text-align: center;
color: #888;
}
#pageNovelty p {
background: none;
font-size: 16px;
line-height: 1.4;
padding: 35px 25px 18px 25px;
text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.6);
color: #555;
}
#buttonsNovelty {
padding: 15px 15px 25px;
text-align: center;
}
#pageNovelty .button {
display: inline-block;
position: relative;
height: 33px;
width: 200px;
font: 17px/33px 'Cuprum', 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
margin-right: 15px;
padding: 0 35px 0 40px;
text-decoration: none;
border: none;
}
#pageNovelty .button:last-child {
margin-right: 0;
}
#pageNovelty .button span {
position: absolute;
top: 0;
right: -5px;
width: 5px;
height: 33px;
}
#pageNovelty .blue {
background: url('/js/buttons.png') no-repeat;
color: white;
background-position: left top;
text-shadow: 1px 1px 0 #5889a2;
}
#pageNovelty .blue span {
background-position: -195px 0;
}
#pageNovelty .blue:hover {
background-position: left bottom;
}
#pageNovelty .blue:hover span {
background: url('/js/buttons.png') no-repeat;
background-position: -195px bottom;
}
#pageNovelty .gray {
background: url('/novelty/buttons.png') no-repeat;
color: white;
background-position: -200px top;
text-shadow: 1px 1px 0 #707070;
}
#pageNovelty .gray span {
background-position: -395px 0;
}
#pageNovelty .gray:hover {
background-position: -200px bottom;
}
#pageNovelty .gray:hover span {
background: url('/novelty/buttons.png') no-repeat;
background-position: -395px bottom;
}
#pageNovelty .button.external {
color: #000
}
Como observaran se estan utilizando los valores que hemos utilizado para explicar como personalizar a novelty.