Imagen de publicidad

Gadget para tus redes sociales con efecto hover

domingo, 14 de julio de 2013

Enviar
print this page
En Tutoriales-Blogger he visto este interesante Widget que podría gustar a muchos, para alimentar nuestras redes sociales. Por aquí te dejo un ejemplo.

El código es muy simple de implementar. Una vez en el Dashboard de Blogger, nos vamos a "Diseño" e insertamos un widget de HTML/Javascript. Una vez ahí, insertamos el siguiente código:
<style type="text/css">
ul#social {
position: fixed;
margin: 0px;
padding: 0px;
top: 10px;
left: 0px;
list-style: none;
z-index:9999;
}
ul#social li {
width: 100px;
}
ul#social li a {
display: block;
margin-left: -2px;
width: 100px;
height: 70px;
background-color:#fff;
background-repeat:no-repeat;
background-position:center center;
border:1px solid #AFAFAF;
-moz-border-radius:0px 10px 10px 0px;
-webkit-border-bottom-right-radius: 10px;
-webkit-border-top-right-radius: 10px;
-khtml-border-bottom-right-radius: 10px;
-khtml-border-top-right-radius: 10px;
-moz-box-shadow: 0px 4px 3px #000;
-webkit-box-shadow: 0px 4px 3px #000;
}
ul#social .twitter a{
background:#0F96C6 url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEixeg6UHzdVJJW5Lnfoo45-gnLIUbW1q2ZOgG3XbADHj3qD1u6y6wZ4CKBz0bwk-3Tt4n2GsgTKkWbCRhVgOZiulgYR4SB-b5UMZQFKAtH9Eets34BpXzeWOs9RAnewhU3Wbeb8eN0p4_0/s1600/Twitter.png)no-repeat;
background-position:center center;
}
ul#social .googleplus a {
background:#D73D27 url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgEo91llXHKIFrq4rzzy3LS1D0yo6HSnhmWuZT8nUBKK2eacbJPy3EyaC_3b2dhTRPdkfxXGxIzeVFr_ILV_LazATZkhisPQTSSM5r_U3ddbMelL-tnlsPdWkoMmgPh76VEdr_VkRlTjJw/s1600/GOOGLE+PLus.png)no-repeat;
background-position:center center;
}
ul#social .facebook a {
background:#1A4B97 url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgQw1EU6xcnjqiGPKXfJtirPcR8i5oeqjnCqoFWEOy231TtkLMqLGdAdSAMuag2gjepF2XsdfaIeTdjWH21ptBPRuMd1o-Ucii57k29rqaXc_ZUARvO-hefhuJdfR9U-Lty0Ew8Nuhfauo/s1600/Facebook.png)no-repeat;
background-position:center center;
}
ul#social .rss a {
background:#FAAE17 url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhmuR7RSowPp5DFM2JyDUZ6Oqhe4GjF2I9vbeH9f8OIAuvUcm1osoNdxNt9dYoGEf5dE-mJEtGc1mw4QrBoJqp4HCY0k6J_O2hY7RbHZaCmo2FiG9q3_31Vlz2JeINl9kmrc7w2RvJVFN8/s1600/rss.png)no-repeat;
background-position:center center;
}
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script><script type='text/javascript'>
$(function () {
$('#social a').stop().animate({
'marginLeft': '-85px'
}, 1000);
$('#social > li').hover(
function () {
$('a', $(this)).stop().animate({
'marginLeft': '-2px'
}, 200);
},
function () {
$('a', $(this)).stop().animate({
'marginLeft': '-85px'
}, 200);
}
);
});
</script>
<ul id='social'>
<li class='twitter'><a href='#' title='Twitter'></a></li>
<li class='googleplus'><a href='#' title='Google Plus'></a></li>
<li class='facebook'><a href='#' title='Facebook'></a></li>
<li class='rss'><a href='#' title='Rss'></a></li>
</ul>
 La línea en azul debe borrarse en caso de que ya tengamos implementado algún otro widget o truco que utilice las librerías JQuery, que suelen ser casi todas las utilidades que muestran diapositivas. En las últimas líneas del código, los # los sustituiremos por los respectivos enlaces a nuestras redes sociales y rss. Y eso es todo.

¿Qué te parece?
Comparte:

0 comentarios:

Publicar un comentario

 
Design by Herdiansyah Hamzah | Published by Borneo Templates | Powered by Blogger.com. Traducido al espa�ol por Blogarizate
© Copyright 2011-2013 Plantilla de Noticias Todos los derechos reservados.