Floating Social Bookmarks with Mouseover

Anonymous 12:59 AM Edit Artikel
Now, I will post about Floating Social Bookmarks with Mouseover. You have seen many kinds of Social Bookmarks style. There is floating, under the post, or maybe on sidebar. So, we will add the floating Social Bookmarks. Just see the DEMO. Interested? Follow the step below, to add into your blog.

1. Log in to your blogger account
2. Go to Design --> Page Elements --> Add Gadget
3. Choose "HTML/Java Script"

<style>
ul#navigation {
position: fixed;
margin: 0px;
padding: 0px;
top: 0px;
right: 0px;
list-style: none;
z-index:999999;
width:721px;
}
ul#navigation li {
width: 103px;
display:inline;
float:left;
border:0;
}
ul#navigation li a {
display: block;
float:left;
margin-top: -2px;
width: 100px;
height: 25px;
background-color:#eeeeee;
background-repeat:no-repeat;
background-position:50% 10px;
border:1px solid #BDDCEF;
-moz-border-radius:0px 0px 10px 10px;
-webkit-border-bottom-right-radius: 10px;
-webkit-border-bottom-left-radius: 10px;
-khtml-border-bottom-right-radius: 10px;
-khtml-border-bottom-left-radius: 10px;
text-decoration:none;
text-align:center;
padding-top:80px;
opacity: 0.96;
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=70);
}
ul#navigation li a:hover{
background-color:#CAE3F2;
}
ul#navigation li a span{
letter-spacing:2px;
font-size:11px;
color:#60ACD8;
font-family:trebuchet-ms, arial, tahoma, Sans-Serif;
font-weight:bold;
text-shadow: 0 -1px 1px #fff;
}
ul#navigation .rss a{
background-image: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiaZOM_H16aLShGKgFq2vH5xC4bhGyHbHGwbwbiro5QZkxgJpKNSUQGwfq8dyhMEoNFF4fXjUVFE_i2ihYWbdidIADa8Rv6vfAQhxOQGcr8PNyII5QXnI0VDe2vs8eZ1HOWnsvRPPVraE1f/s400/rss_64x64.png);
}
ul#navigation .facebook a {
background-image: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhLekPGjo4HBupq6zkoikqnUbTEuf-FtRXgrM73Qpb20dgTSG1AJyprP1UdluTb1lEZcYynyHoKezDxppb_4GCwKwV_F84LfD_9_pKcCzNIL6LyAkUihySLuunEdeU9L2fsdvhXROFs-bGh/s400/facebook_64x64.png);
}
ul#navigation .twitter a {
background-image: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg0IM60Kv9YeH9KZ-o4ruj-57aCY5FSqvsGLEUWBqLlxHD-UQ7BNIr2RoB4x7XAtKu_JtGIz5hyWGlkVLCtWWVWHJxb9MFAoz91RtJMT5DQmZuy0eB8fs-I9osMvOGyu2PV9c9BxBw_lJAg/s400/twitter_64x64.png);
}
ul#navigation .googlebookmarks a {
background-image: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEihCYFDbrBwdPZnpPq1U4iiiCIlj2P-epbzMBcIZA3e4vgcyjgQ467aBPJYbzCCb-10cXrI35p0F5i1bLUwMkPmVStT05DnzaRvmZB4gWksCYdZkEd9qhNGS6ucguOTZEnq6LaumZvTvk15/s400/google_64x64.png);
}
ul#navigation .e-mail a {
background-image: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjYH8g9TDX6vQCiTVM_MEZj2d0RzyuE6IMc2SMVoOxUjIJs9O2w42s8XvwJT6FZaJ_WDZ2a5Eaazv7KHDlj_SNsGU5cfgiQoxzT7nkcyD5jEYFa109k5_RBKqaW8RDmut5BLp8ryQHWc3fW/s400/yahoo_64x64.png);
}
</style>

<script src="http://jqueryjs.googlecode.com/files/jquery-1.3.2.js" type="text/javascript">
</script>
<script type="text/javascript">
$(function() {
var d=300;
$('#navigation a').each(function(){
$(this).stop().animate({
'marginTop':'-80px'
},d+=150);
});

$('#navigation > li').hover(
function () {
$('a',$(this)).stop().animate({
'marginTop':'-2px'
},200);
},
function () {
$('a',$(this)).stop().animate({
'marginTop':'-80px'
},200);
}
);
});
</script>

<ul id="navigation">
<li class="rss"><a rel="nofollow" href="http://YOUR-BLOG.blogspot.com/atom.xml">RSS Feed</a></li>
<li class="facebook"><a rel="nofollow" href="FACEBOK-PROFILE">Facebook</a></li>
<li class="twitter"><a rel="nofollow" href="TWITTER-ACCOUNT">Twitter</a></li>
<li class="googlebookmarks"><a rel="nofollow" href="https://www.google.com/bookmarks/">Google</a></li>
<li class="e-mail"><a rel="nofollow" href="YAHOO!-ACCOUNT">Yahoo!</a></li>
</ul>


4. Then, add the code below
5. Click SAVE TEMPLATE
Previous
Next Post »
Show comments
Hide comments