17.4.12

Floating Social Plugin in Mouse Hover Effect

Hello Friends ! here is a Simple Method to Add a Floating Social plugin At Mouse Hover Effect.after searching a lot on floating plugins for blogger with Mouse Hover Effect,i've found an awesome plugin for blogger specially works Mouse Hover Effect like When You Move or touch your Mouse's Pointer on the Social plugin it is open downwards.








Now Add the Floating Social Plugin to Your Blog :.

Note :. the Important thing is to Change facebook,google plus and twitter links and the feed url in the given code at the time of Addition.




Note : Don't Forget to Include Your Code.


@) This is a Manual method :.


Here Copy the Below Code and Login to your Blogger Dashboard 
And no go to design > Page Elements 
Choose the HTMl/JAVASCRIPT 
And Now Paste the Below Code in it


  1. <style>  
  2. ul#navigation {  
  3. position: fixed;  
  4. margin: 0px;  
  5. padding: 0px;  
  6. top: 0px;  
  7. right: 0px;  
  8. list-style: none;  
  9. z-index:999999;  
  10. width:721px;  
  11. }  
  12. ul#navigation li {  
  13. width: 103px;  
  14. display:inline;  
  15. float:left;  
  16. border:0;  
  17. }  
  18. ul#navigation li a {  
  19. display: block;  
  20. float:left;  
  21. margin-top: -2px;  
  22. width: 100px;  
  23. height: 25px;  
  24. background-color:#eeeeee;  
  25. background-repeat:no-repeat;  
  26. background-position:50% 10px;  
  27. border:1px solid #BDDCEF;  
  28. -moz-border-radius:0px 0px 10px 10px;  
  29. -webkit-border-bottom-right-radius: 10px;  
  30. -webkit-border-bottom-left-radius: 10px;  
  31. -khtml-border-bottom-right-radius: 10px;  
  32. -khtml-border-bottom-left-radius: 10px;  
  33. text-decoration:none;  
  34. text-align:center;  
  35. padding-top:80px;  
  36. opacity: 0.96;  
  37. filter:progid:DXImageTransform.Microsoft.Alpha(opacity=70);  
  38. }  
  39. ul#navigation li a:hover{  
  40. background-color:#CAE3F2;  
  41. }  
  42. ul#navigation li a span{  
  43. letter-spacing:2px;  
  44. font-size:11px;  
  45. color:#60ACD8;  
  46. font-family:trebuchet-ms, arial, tahoma, Sans-Serif;  
  47. font-weight:bold;  
  48. text-shadow: 0 -1px 1px #fff;  
  49. }  
  50. ul#navigation .rss a{  
  51. background-image: url(http:https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj447oHxb8aEiMX64rPJBmSIx1ZxrrMWheBkBLDw5Tul4yieatfMVJikBCbk9JlHR5T4CNkEclyOol2EAcyaGB4zEiLlct2ZxePZ3xd_TPtCVdAqlWS5US_0UHf_HDbJuZzHnICcdXJBJUr/s1600/rss-logo-64x64.png);  
  52. }  
  53. ul#navigation .facebook a {  
  54. background-image: url(http:https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhH6aG-YuzfS1AcOrhCnxo-SbDf5HkKPeg8f4SHXZbdRkL5LADjBpxW1aEKu5jbxUZjhKhe_yHPe9qEURE1_GaocBR_22ydMDj00ifcQvtxXzdA785iHkO-VTXG72w-fD6KtY7bXXJviHW6/s1600/facebook-button.png);  
  55. }  
  56. ul#navigation .twitter a {  
  57. background-image: url(http:https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgoiJ_xsgj8Qmse8pdILy9-SQnd9PTub7vkWWX7FCmxba2DbuEE7rimfiRii8b0krBiZ3_2xUu-hen1JlbKLJvjhpChu7_gSKMEOr8tHjLA_O3Jq8KilPOydNUAwK3bTUIOP-fWtnjklAQf/s1600/images.jpg);  
  58. }  
  59. ul#navigation .googlebookmarks a {  
  60. background-image: url(http:https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhL6asFhhdrHM32g48NKnM2dcygbkpGVIk2o3oh7aFoYHPDq8QgC9r9MIxMKU-R5zXka8njYOs1q2YTxMRy30Vgi1mcNi0dWe3idylmzhGfdv0cNL7yyD1M4BZguzh-dWSkhUm2pbmhPO7Z/s1600/google-plus-logo-64x64.png);  
  61. }  
  62. ul#navigation .e-mail a {  
  63. background-image: url(http:https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh-GRkHFpEJn1Wj_2u-dQv9JDLaoclz_rx3D9B8X0ZhqWLgTOshz6fqbuy16kguoFW-2ZBXxcNZlhpItJAF0ugwjM5CTgN5YjKBNNHimAfffdHP-3IrS4Za0yi_fB5uWrPBFUqvFlBOShfy/s1600/icon_yahoo.jpg);  
  64. }  
  65. </style>  
  66.   
  67. <script src="http://jqueryjs.googlecode.com/files/jquery-1.3.2.js" type="text/javascript">  
  68. </script>  
  69. <script type="text/javascript">  
  70. $(function() {  
  71. var d=300;  
  72. $('#navigation a').each(function(){  
  73. $(this).stop().animate({  
  74. 'marginTop':'-80px'  
  75. },d+=150);  
  76. });  
  77.   
  78. $('#navigation > li').hover(  
  79. function () {  
  80. $('a',$(this)).stop().animate({  
  81. 'marginTop':'-2px'  
  82. },200);  
  83. },  
  84. function () {  
  85. $('a',$(this)).stop().animate({  
  86. 'marginTop':'-80px'  
  87. },200);  
  88. }  
  89. );  
  90. });  
  91. </script>  
  92.   
  93. <ul id="navigation"><li class="rss"><a href="http://feeds.feedburner.com/fblatest/nflb" rel="nofollow" target="_blank">RSS Feed</a></li>  
  94. <li class="facebook"><a href="http://www.facebook.com/COMPUTERS.TRICKS" rel="nofollow">Facebook</a></li>  
  95. <li class="twitter"><a href="http://www.twitter.com/fblatest" rel="nofollow">Twitter</a></li>  
  96. <li class="googlebookmarks"><a href="https://plus.google.com/113984752981172252339" rel="nofollow">Google +</a></li>  
  97. <li class="e-mail"><a href="http://www.blogger.com/post-edit.g?blogID=6667344376774425934&postID=1153378590254891100#" rel="nofollow">Yahoo!</a></li>  
  98. </ul>

Now Replace the Urls Given Above With your Links 


Don't Forget to Change the Rss,Facebook,Twitter and Google plus Links.So that you've changed the Links.then Save the Widget.that's it Now you are Done.

Twitter Delicious Facebook Digg Stumbleupon Favorites More

 
Powered by Blogger