Floating Social Media Widget for Blogger - My Blogger Market

Breaking

Post Top Ad

Responsive Ads Here

Post Top Ad

Responsive Ads Here

4/26/2014

Floating Social Media Widget for Blogger

After my previous articles about Css Animated Menu Widget for Blogger today i am going to share A beautiful and distinctive custom Widget for who have Blogs with limited space. Sensitive to touch the mouse, after automatically opens that touched a category.



So let's See The Tutorial How to add Floating Social Media Widget For Blogger 


LIVE DEMO



  • Go to Blogger Dashboard
  • Click on Drop & Down Menu of your blog
  • Click layout >> and click Add a Gadget >> Html/Javascript 
  • Then paste the below code on it

<style type="text/css">
ul#social {
    position: fixed;
    margin: 0px;
    padding: 0px;
    top: 20%;
    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/AVvXsEjskbmsHgRPydfZZKaYtfOkx6T_DzXQkF8E5t2mjuIz-DFnJmDXfc6K-xdLhUjV-Q_-6lauwcIBZnOsAhQpw_54Jnk4P8gv9_SSFnHrN8qi7OtlfnAxt5fuR_6j8wclDsfMKbp2Gv5h1_8/s1600/Twitter.png)no-repeat;
background-position:center center;
}
ul#social .googleplus a      {
    background:#D73D27 url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg0dN-IYO04Xhp8IeVDRIEHLaRI3_sz_SzFjj_igUFhie8X7scIXGlWO8L_W5LaGMgwYBOphxwddCZP_OuPXO_5I9FLlHdPgoMBsScE7PCAm9bUNjyr2hGc0Zq2koE2AkQLjRib4UUJ1J4/s1600/GOOGLE+PLus.png)no-repeat;
background-position:center center;
}
ul#social .facebook a      {
    background:#1A4B97 url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh_n9ilQdgK7wCpPm3pi1Pu5OdsMEMJ3ZT7h2Vq8BkjQLhidgvebvzIENUc1jHLUFnLdk974VjijLSwnSzLknNGVuy0pamHSeevYRZg-wrNlKcyHRxS1CEL56jjt6y84CM0XJZKzXRwpNc/s1600/Facebook.png)no-repeat;
background-position:center center;
}
ul#social .rss a      {
    background:#FAAE17 url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgRtP0SYBYC0U4AJpp9VDQxdEaq2q6E4ip_99DN8-F08fHmgNn_60swsPyF_bCUgy61nXBDYVFogCAKclbH8l3ChTPhLCtbYyqc11W0_n55t-5Mhra8pz1G4hGdlhAVLu428gmBzxSGEos/s1600/rss.png)no-repeat;
background-position:center center;
}

ul#social .pinterest a   {
    background:#963336 url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgFlBKn7mgAtvNxjaB0L01C9W2QdeCovet5UqDmnloRFA3iSl-sdhef29oRD5LstXulBt656oQ6dzS9ivJLWgGkAnYtcvGLdp-rNn-Lvkje5WBvMy6uPS5Mq0SlSmyZBi75SZevgKErLE0/s1600/Pinterest.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>
<br />
<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>
<li class="pinterest"><a href="#" title="Pinterest"></a></li>
</ul>


  • Save It. 
View your blog this widget will appear correctly if you facing some problem then leave a comment below.

No comments:

Post a Comment

Your feedback is always appreciated. We will try to reply to your queries as soon as time allows.
Note:
1. Make sure to click the "Subscribe By Email" link below the comment to be notified of follow up comments and replies.
2. Please "Do Not Spam" - Spam comments will be deleted immediately upon our review.
3. Please "Do Not Add Links" to the body of your comment as they will not be published.
4. Only "English" comments shall be approved.
5. If you have a problem check first the comments, maybe you will find the solution there.

Post Top Ad

Responsive Ads Here