Tooltips con CSS en forma de burbuja – Lawyers – PHD

Este es otrotooltip con CSS que tiene forma de burbuja y que servirá muy bien para dar información extra sobre algún texto. No usaremos nada de scripts, sólo un par de imágenes y CSS.

Puedes ver el ejemplo pasando el cursor por las palabras que parecen enlace:
Untooltip¡Hola! Soy un tooltip de ejemplo hecho con CSS (también llamada descripción emergente) es una herramienta de ayuda visual patentada por Microsoft el 19 de diciembre de 2002 que funciona al situar o pulsar con el ratón sobre algún elemento gráfico, mostrando una ayuda adicional para informar al usuario de la finalidad del elemento sobre el que se encuentra.
Como la forma de la burbuja es una imagen podríamos editar la imagen y obtener otro color por ejemplo rosa o azul:
Untooltip¡Hola! Soy un tooltip de ejemplo hecho con CSS (también llamada descripción emergente) es una herramienta de ayuda visual patentada por Microsoft el 19 de diciembre de 2002 que funciona al situar o pulsar con el ratón sobre algún elemento gráfico, mostrando una ayuda adicional parainformar¡Hola! Soy un tooltip de ejemplo hecho con CSS al usuario de la finalidad del elemento sobre el que se encuentra.

Para colocar este tipo de tooltip sólo entra enDiseño | Edición de HTML y antes de
/b:skin pega lo siguiente:

/* Tooltip 1 con CSS
----------------------------------------------- */
a.tt{
position:relative;
z-index:24;
color:#3CA3FF;/* Color del texto que tiene el tooltip */
font-weight:bold;
text-decoration:none;
}
a.tt span{ display: none; }
a.tt:hover{ z-index:25; cursor:help;}
a.tt:hover span.tooltip{
display:block;
position:absolute;
top:0px; left:0;
padding: 15px 0 0 0;
width:200px;
color: #000;/* Color del texto de la descripción */
text-align: center;
filter: alpha(opacity:90);
KHTMLOpacity: 0.90;
MozOpacity: 0.90;
opacity: 0.90;
}
a.tt:hover span.top{
display: block;
padding: 30px 8px 0;
background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhybXpTW8s-E8Wg-k8ODw3NKEk7YF2k5G_nK5iH4nLIX61uGoNzkk5EdZVNfxXA6FdJ2o9Kp-s_gIVkHlCYkLNJkNIRsn9Ep4cNMA2fmEe7lM7YR7LoPdnOe9CrXx8YoCWf0fA3wjJdLpbQ/) no-repeat top;
}
a.tt:hover span.middle{
display: block;
padding: 0 8px;
background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhKy3uK97KYW1qZPTzzllppYvs-RVtA6NIllNtzxI_smjpvSUdi1wxFZSgOFT98tlX0zaoT8f7lmNakQSX3UFm2516ljHb4r10FvWfUcPBDEtnFzthzlbALig5Pmqb7XepqCLl1xQ4EIgbm/) repeat bottom;
text-decoration:none;
}
a.tt:hover span.bottom{
display: block;
padding:3px 8px 10px;
background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhybXpTW8s-E8Wg-k8ODw3NKEk7YF2k5G_nK5iH4nLIX61uGoNzkk5EdZVNfxXA6FdJ2o9Kp-s_gIVkHlCYkLNJkNIRsn9Ep4cNMA2fmEe7lM7YR7LoPdnOe9CrXx8YoCWf0fA3wjJdLpbQ/) no-repeat bottom;
}

Ahora en tu entrada donde vayas a mostrar el tooltip utiliza este código:
a href="#" class="tt"palabra con tooltipspan class="tooltip"span class="top"/spanspan class="middle"Aquí va la descripción adicional que mostraremos en el tooltip/spanspan class="bottom"/span/span/a

Y así se sencillo podemos tener un tooltip llamativo sólo con CSS.
Si quisieras el tooltip rosa entonces en lugar del primer código que hemos añadido usarás este:
/* Tooltip 2 con CSS
----------------------------------------------- */
a.tt{
position:relative;
z-index:24;
color:#3CA3FF;/* Color del texto que tiene el tooltip */
font-weight:bold;
text-decoration:none;
}
a.tt span{ display: none; }
a.tt:hover{ z-index:25; cursor:help;}
a.tt:hover span.tooltip{
display:block;
position:absolute;
top:0px; left:0;
padding: 15px 0 0 0;
width:200px;
color: #000; /* Color del texto de la descripción */
text-align: center;
filter: alpha(opacity:90);
KHTMLOpacity: 0.90;
MozOpacity: 0.90;
opacity: 0.90;
}
a.tt:hover span.top{
display: block;
padding: 30px 8px 0;
background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjlQ86SqFjN_8UC-7fDy8PemRgZtPR5K-Cu7Rxd2KkFw80HTRw_bAZbZSJ8-oX3mHGTTzMMq5nCBuPHVavnqRlPJesOkzOF-6u14fhMG8sVwcqtgNegnSlgPQhjWSmizBOk12Nsqu0AUbKz/) no-repeat top;
}
a.tt:hover span.middle{
display: block;
padding: 0 8px;
background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjr8qp_DRW1ymW4Bsul1X9RgobVZm9cOO9Ct609lgEWXHibbR-FD-UfHmQPwq7MwfNIZKd1eQQjXNb3ElpqFtXSKmlQl7CweGbxw85jPD520xWYd5-vzNC9pJyLblgdyrRv4MLLnB1vmaRV/) repeat bottom;
text-decoration:none;
}
a.tt:hover span.bottom{
display: block;
padding:3px 8px 10px;
background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjlQ86SqFjN_8UC-7fDy8PemRgZtPR5K-Cu7Rxd2KkFw80HTRw_bAZbZSJ8-oX3mHGTTzMMq5nCBuPHVavnqRlPJesOkzOF-6u14fhMG8sVwcqtgNegnSlgPQhjWSmizBOk12Nsqu0AUbKz/) no-repeat bottom;
}
Y si quisieras el azul entonces el código a añadir sería este:
/* Tooltip 3 con CSS
----------------------------------------------- */
a.tt{
position:relative;
z-index:24;
color:#3CA3FF;/* Color del texto que tiene el tooltip */
font-weight:bold;
text-decoration:none;
}
a.tt span{ display: none; }
a.tt:hover{ z-index:25; cursor:help;}
a.tt:hover span.tooltip{
display:block;
position:absolute;
top:0px; left:0;
padding: 15px 0 0 0;
width:200px;
color: #000; /* Color del texto de la descripción */
text-align: center;
filter: alpha(opacity:90);
KHTMLOpacity: 0.90;
MozOpacity: 0.90;
opacity: 0.90;
}
a.tt:hover span.top{
display: block;
padding: 30px 8px 0;
background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhPGlY36Z5al-m59VEXnvgHrAHVrenH6OXPlwUhgIch51hhhdszxb5NhhzuZm-QJgJAO8ZjvLnAEY3Z9g4WMckBycsb1mb4JAq9idgbnF3jKKcKGHncYcMRlBTeBgs8w2FKLx7MCwg7TN5C/) no-repeat top;
}
a.tt:hover span.middle{
display: block;
padding: 0 8px;
background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg9GCSP698RTZpaCABGLkyDBaLkkWAiWl1fI-vGmtdEkw1SYzzk56N7FDaR2kaXbik5qdsrZ9gRiKdE4QSEqe0Ve7fDhVsEUBwBLwXjwlnwuVdoE359tEy5iKYWTdNvM4jC7csVJ8he7XKb/) repeat bottom;
text-decoration:none;
}
a.tt:hover span.bottom{
display: block;
padding:3px 8px 10px;
background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhPGlY36Z5al-m59VEXnvgHrAHVrenH6OXPlwUhgIch51hhhdszxb5NhhzuZm-QJgJAO8ZjvLnAEY3Z9g4WMckBycsb1mb4JAq9idgbnF3jKKcKGHncYcMRlBTeBgs8w2FKLx7MCwg7TN5C/) no-repeat bottom;
}
Por supuesto que en cualquiera de los tres podemos modificar el color del texto, el tipo de letra, etc.
Las burbujas como mencioné antes, son una imagen por lo que si deseas otros colores habrás que editar las imágenes y cambiarlas por las URLs que están en el primer código.

MESOTHELIOMA LAW FIRMDONATE CAR TO CHARITY CALIFORNIAHARDDRIVE DATA RECOVERY SERVICESDONATE A CAR IN MARYLAND DONATING A CAR IN MARYLAND,DONATE CARS ILLINOIS,CRIMINAL DEFENSE ATTORNEYS FLORIDA ,BEST CRIMINAL LAWYER IN ARIZONASTRUCTURED ANNUITY SETTLEMENT,ASBESTOS LAWYERS,NUNAVUT CULTURE,DAYTON FREIGHT LINES ,Bextra Bankruptcy Dental Plan Private JetAsi que mejor me fue a un hotel y motel FIFA World Cup Mundial Football New Orleans mesothelioma lawyer y mas que todo que la pase bien en ese hostal y me me fui de viaje a tennessee mesothelioma attorney donde EEUU me pidio la visa pero mejor aun many people in mesothelioma trial lawyers pero me fui a travel Alaska nebraska mesothelioma attorney pero mas aun con mesothelioma attorney nebraska mas siempre fue asi des hace mucho time merlin olsen lawsuit,Selling annuity payments for cash,Sell my structured settlement,Sell structured settlement,Structured settlement,Structured settlement companies,Sell my annuity payments lump sum,Car accident lawyer Denver,Accident injury attorneys,Sell my annuity

integrated ehr california law lemon online criminal justice degree attorney lawyer mesothelioma what is structured settlement motor insurance quotes mesothelioma attorney maritime lawyer houston Claim injury lawyers west palm beach Dedicated Hosting Dedicated Server Hosting Psychic for Free Online casino Holland Michigan College DONATING USED CARS TO CHARITY Donate a car in Maryland Car Insurance Quotes Utah Proud Italian cook Donating a Car in Maryland Service business software Donate Car to Charity California Mortgage Tech school auto accident attorney philadelphia mesothelioma lawyer Best criminal lawyer in Arizona automobile accident attorney mesothelioma lawyer houston Car insurance quotes MN selling my structured settlement Best social media platforms ONLINECLASSES bus accident attorney los angeles Casino Bankruptcy lawyer Social media campaigns CAR DONATE car insurance quotes mn mesothelioma law suit Donate your car Sacramento injury attorney baton rouge adverse credit remortgage Asbestos Lung Cancer Dayton Freight Lines Better Conference Calls saskatchewan auto insurance domain registration yahoo MASSAGE SCHOOL DALLAS TEXAS Criminal defense lawyer Mobile casino asterisk call center software Make money online Australia harddrive data recovery services Casino reviews compare life assurance Best Criminal Lawyers in Arizona Donate cars in ma Live casino Criminal lawyer DUI lawyer Forensics Online Course Html email STRUCTURED ANNUITY SETTLEMENT Hire php developers Data Recovery Raid Asbestos Lawyers best mesothelioma lawyers Italian cooking school Annuity Settlements Best Seo company hosted predictive dialers personal injury accident lawyer structured annuity settlement Hire php programmers Met auto Online Christmas cards Dwi lawyer Social media management refinance with poor credit fast cash for house Seo companies Webex Costs Seo company Photo Christmas cards Motor Replacements state of california car insurance Dallas Mesothelioma Attorneys FUTURISTIC ARCHITECTURE Php programmers for hire Hire php developer Health Records Personal Health Record personal injury lawyer Donating Used Cars to Charity Business finance group Computer science classes online Php programmers Donate Car for Tax Credit quotes car mesotheloma How to Donate A Car in California World Trade Center Footage orlando criminal attorney best consolidation loan student Donate old cars to charity hughes net business Online classes Best social media platforms for business donate your car for kids New social media platforms SELL ANNUITY PAYMENT Donate Your Car Sacramento Social media platforms for business donate car for tax credit tucson car accident attorney mesothelioma settlements

Share: