viernes, 4 de abril de 2014

Filled Under: ,

Gadget desplegable y adaptable de botones para compartir – Teleconferencias – Habitaciones – World

Algún título le tenía que poner a la entrada pero lo que veremos puede servir tanto para montar una botonera social, como para cualquier otra situación en la que necesitemos mostrar varias opciones dispuestas en una única fila.

El resultado será una especie de menú en el que el contenido de cada uno de los elementos se mantendrá oculto hasta hacerhover sobre él. En ese momento el elemento señalado se ensanchará, cambiará de color y dejará mostrar lo que hay en su interior.

Ya que estaba en el tajo y dado que el número deplantillas adaptables (RWD) disponibles va en aumento por aquello de la cada vez más amplia difusión de Internet en dispositivos portátiles, he ajustado el CSS para que la caja principal y sus elementos se adapten a cualquier ancho.



En la demo que he montado usé la fuente de iconosAwesome, pero evidentemente todo esto es modificable, pudiendo poner en la parte inicialmente visible texto, imágenes o cualquier otra cosa con los correspondientes ajustes de estilo.

Y como decía al principio lo mismo ocurre con el contenido; se puede poner el código de unos botones como en este ejemplo, pero también podemos insertar otro tipo de código, enlaces, galerías de imágenes, vídeos... En fin, que lo podemos simplificar o complicar lo que queramos.


Para ponerla tal cual veis aquí, el código necesario lo tenéis disponible eneste Codepen, un enlace que os recomiendo como primer destino tras terminar de leer este post. Allí podréis hacer todo tipo de pruebas y vuestras propias modificaciones.


Para los que gusten ir a lo directo pues ya pueden empezar a tomar notas... pero pocas. Más bien preparados para montar todo en dos pasos: copiar y pegar. Lo que puse al final de la entrada es lo único que habría que insertar en la plantilla.

¿Dónde? Pues o bien justo a continuación de la líneadiv class='post-header' o bien tras la dediv class='post-footer', según queramos ponerlo al principio de cada entrada o en el pie de la misma.

Yo para que lo veáis en directo lo he puesto aquí en medio:




Por cierto que incluí algunos comentarios en la parte de estilo para facilitaros la tarea de la modificación.

!-- Botonera social desplegable --
link href='//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css' rel='stylesheet'/
ul class='acordeon'
lih4span class='fa fa-facebook'//h4
div class='contenido'
iframe allowTransparency='true' expr:src='"http://www.facebook.com/plugins/like.php?href=" + data:post.url+ "&layout=button_count&show_faces=false&width=100&height=20&action=like&font=tahoma&colorscheme=light"' frameborder='0' scrolling='no' style='border:none; overflow:hidden; width:100px; height:20px'/
/div
/li
lih4span class='fa fa-twitter'//h4
div class='contenido'
a class='twitter-share-button' data-count='horizontal' data-lang='es' href='http://twitter.com/share'Tweet/ascript src='http://platform.twitter.com/widgets.js' type='text/javascript'/
/div
/li
lih4span class='fa fa-google-plus'//h4
div class='contenido'
g:plusone size='medium'/script src='https://apis.google.com/js/plusone.js' type='text/javascript'/
/div
/li
lih4span class='fa fa-pinterest'//h4
div class='contenido'
a target='_blank' expr:href='"http://pinterest.com/pin/create/button/?url=" + data:post.url + "&media=" + data:post.firstImageUrl + "&description=" + data:post.snippet ' class='pin-it-button' count-layout='horizontal'img alt='Pin It' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj8XROERT8ZAJIVEBsaVKT7OqCf-ff3RRbbEojQ8yEhzvUBHYh3w66_Gl7zmr09hhyphenhyphenc9DemLHB6l9qIepY5Vm_qStzVpz9H9pjJ61BHTUvlURWII6oT73zf_sxMDwEkTWWtXdC070ciDQ8/s1600/pin+it.gif' //a
script type='text/javascript' src='//assets.pinterest.com/js/pinit.js'/
/div
/li
lih4span class='fa fa-linkedin'//h4
div class='contenido'
script src='//platform.linkedin.com/in.js' type='text/javascript'lang: es_ES1/scriptscript type='IN/Share'/
/div
/li
/ul
style/* Ajustes generales */
ul.acordeon * {
margin: 0 auto;
padding: 0;
vertical-align: top;
color: #fff;
-webkit-transition: all .6s ease-in-out;
-moz-transition: all .6s ease-in-out;
transition: all .6s ease-in-out;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
/* Contenedor general */
ul.acordeon {
width: 90%; /* Personalizar sncho total desplegado */
overflow: hidden;
margin: 20px auto;
padding: 0;
text-align: center;
list-style: none;
font-size: 0;
}
/* Cada elemento */
ul.acordeon li {
display: inline-block;
*display: inline; zoom: 1; /* IE7 */
width: 12%; /* 90 : (nºelem+2) */
height: 50px; /* Personalizar altura*/
background: #ccc;
text-align: center;
border-right: 1px solid #eee;
}
/* Títulos pestañas */
ul.acordeon li h4 {
display: inline-block;
*display: inline; zoom: 1; /* IE7 */
width: 100%;
height: 100%;
padding: 10px;
font-size: 30px;
text-align: center;
}
/* Contenido inicialmente oculto */
ul.acordeon li .contenido {
display: inline-block;
*display: inline; zoom: 1; /* IE7 */
width: 0%;
height: 100%;
overflow: hidden;
font-size: 14px;
background: #333;
}
/* Hover: Desplegamos elemento */
ul.acordeon li:hover {
width: 36%; /* aprox 3 x ancho ul.acordeon li */
}
/* Hover: Hacemos que el título no ocupe todo el ancho */
ul.acordeon li:hover h4 {
width: 40%; /* Parte sobre el total que ocupara icono desplegado */
background: #333;
}
ul.acordeon li:hover h4 span {
color: #eee;
}
/* Hover: La diferencia hasta el 100% lo ocupará el contenido */
ul.acordeon li:hover .contenido {
width: 60%; /* 100 - ancho ul.acordeon li:hover h4 */
}
/* Ajuste vertical botones 'especiales' */
ul.acordeon li .contenido iframe[src*="twitter"],
ul.acordeon li .contenido iframe[src*="facebook"],
ul.acordeon li .contenido a[data-pin-href*="pinterest"] {
display: inline-block !important;
margin: 10px auto !important;
vertical-align: top !important;
}
/* Ajuste para pantallas pequeñas */
@media (max-width:600px) {
ul.acordeon {width: 98%;}
ul.acordeon li:hover {width: 50%;}
ul.acordeon li h4 {font-size: 18px;}
ul.acordeon li:hover h4 {width: 25%;}
ul.acordeon li:hover .contenido {width: 75%;}
}/style

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 Jet

Donate Car To Charity CALIFORNIA DONATE CAR FOR TAX CREDITDONATE CARS IN MADONATE YOUR CAR SACRAMENTOHOW TO DONATE A CAR IN CALIFORNIA DONATE YOUR CAR FOR KIDS,CAR INSURANCE QUOTES COLORADO ,NUNAVUT CULTURE,DAYTON FREIGHT LINESHARDDRIVE DATA RECOVERY SERVICES,DONATE A CAR IN MARYLAND,MOTOR REPLACEMENTS,CHEAP DOMAIN REGISTRATION HOSTING,DONATING A CAR IN MARYLANDUn dia en Mundial Football MESOTHELIOMA LAW FIRM FIFA World Cup,DONATE CAR TO CHARITY CALIFORNIA , and STRUCTURED ANNUITY SETTLEMENT ,ANNUITY SETTLEMENTS, habia mucha monja pero fui a NUNAVUT CULTURE, DAYTON FREIGHT LINES and BUSINESS VOIP SOLUTIONS,CAR INSURANCE COMPANIES pero for you ONLINE CRIMINAL JUSTICE DEGREE ,PERSONAL INJURY LAW FIRM, Virtual data rooms and future now Automobile accident attorney and pero mas aya del visita and Mesothelioma law firm CHEAP CAR INSURANCE IN VIRGINIA,Selling annuity payments for cashSelling 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

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 JetMundial FootballFIFA World Cup Vestidos de Perros y gatosHosting Dominio web movilSelling annuity payments for cashSelling annuity payments for cash,Sell my structured settlement,Sell structured settlement,Structured settlementStructured settlement companies,Sell my annuity payments lump sum,Car accident lawyer Denver,Accident injury attorneys,Sell my annuity

Online Motor Insurance Quotes tucson car accident attorney Make money online Australia Car Insurance in South Dakota MORTGAGE ADVISER cheap car insurance in virginia buy gift card Custom Christmas cards Best social media platforms for business dallas mesothelioma attorneys Personal Injury Lawyers Best social media platforms purchase structured settlements Donate car for tax credit Car Donate PHD on Counseling Education motorcycle accident lawyer san francisco orlando criminal attorney illinois mesothelioma lawyer personal injury attorney springfield mo Casino Casino reviews Christmas cards Mobile casino diagnosed with mesothelioma Insurance Dwi lawyer Met auto Asbestos Lung Cancer MOTOR REPLACEMENTS Donate Car to Charity California mortgage adviser Annuity Settlements mesothelioma claims arizona auto accident attorney Futuristic architecture Cheap Domain Registration Hosting annuity payment Asbestos Lawyers Custom WordPress theme designer quotes car st louis mesothelioma attorney New social media platforms PHD IN COUNSELING EDUCATION Car Insurance Companies Php programmers Online Classes Online casino sell structured settlement calculator mesothelioma settlements Social media management Health Records Personal Health Record car accident lawyers west palm beach mesothelioma lawyer asbestos cancer lawsuit Car Insurance Quotes MN Car insurance in South Dakota WordPress themes for designers personal injury solicitor How to Donate A Car in California Paperport Promotional Code Online Christmas cards Online College Course DONATE CARS ILLINOIS LIFE INSURANCE CO LINCOLN buying an annuity calculator Adobe illustrator classes Live casino Service business software DONATE CARS IN MA WORLD TRADE CENTER FOOTAGE Donate old cars to charity DUI lawyer Seo company hosted predictive dialers STRUCTURED ANNUITY SETTLEMENT Hire php developers Hire php programmers buyer of structured settlement annuity Register free domains Low Credit Line Credit Cards Seo companies Criminal lawyer mesothelioma care maritime lawyer houston ROYALTY FREE IMAGES STOCK los angeles auto accident attorneys Criminal defense lawyer asbestos mesothelioma lawsuit Php programmers for hire WordPress hosting MESOTHELIOMA LAW FIRM most profitable internet business Hire php developer mesothelioma law suit harddrive data recovery services Bankruptcy lawyer Business management software Donate a car in Maryland MET AUTO car crash attorneys Computer science classes online Car Insurance Quotes Utah Learning adobe illustrator Paperport promotional code Criminal Defense Attorneys Florida World trade center footage miami personal injury attorney Car insurance quotes Utah personal injury attorney ocala fl world trade center footage Business finance group car accident lawyers Social media platforms for business Nunavut Culture boulder personal injury lawyers onlineclasses selling a structured settlement Seo services virtual data rooms Best Seo company business email web hosting small business administration sba email bulk service Motor Insurance Quotes Donate Cars in MA data recovery raid DONATE CAR FOR TAX CREDIT truck accident attorney texas Psychic for free PSYCHIC FOR FREE mesothelioma attorney assistance Dayton Freight Lines mesothelioma litigation Psd to WordPress Photo Christmas cards selling structured settlement Personal Injury Law Firm integrated ehr Home phone internet bundle forensics online course mesothelioma lawyer virginia car insurance quotes compare life assurance ASBESTOS LAWYERS Social media examiner Automobile Accident Attorney Tech school how to donate a car in california Donate your car for kids Social media strategies mesothelioma ct Html email Futuristic Architecture Social media platforms Donating a Car in Maryland WordPress theme designers wisconsin mesothelioma attorney california motorcycle accident lawyer domain name yahoo domains yahoo Proud Italian cook Psd to html Italian cooking school structured settlement company mesothelioma lawyer california Cheap car insurance for ladies AUTO ACCIDENT ATTORNEY mesotheolima Hard drive Data Recovery Services NUNAVUT CULTURE new mexico mesothelioma lawyer personal injury law firm BETTER CONFERENCING CALLS Social media tools Cheap Car Insurance for Ladies Social media campaigns Donate your car Sacramento injury lawyers Mesothelioma Law Firm Home Phone Internet Bundle Donate Car for Tax Credit asbestos lawyers mesothelioma charities Donate Your Car Sacramento Sell Annuity Payment Donate Your Car for Kids Structures Annuity Settlement Car Insurance Quotes Colorado better conferencing calls google adsense chicago hair laser removal Insurance Companies injury attorney baton rouge Donate a Car in Maryland Motor Replacements google affiliate fortis health insurance temporary Dallas mesothelioma attorneys Donating Used Cars to Charity Donate Cars Illinois Register Free Domains CRIMINAL DEFENSE ATTORNEYS FLORIDA Cheap domain registration hosting Best Criminal Lawyers in Arizona Life Insurance Co Lincoln Holland Michigan College LOW CREDIT LINE CREDIT CARDS Online Colleges Online motor insurance quotes royalty free images stock