Adding a Dashing Subscribe Now Box to Blogger so adding a Subscribe Box is not only useful for a user but also for a publisher.By using Rss Feed,Email Subscription,Facebook Like and etc... Fixed Position Slide Open Egg Social Bookmarking Gadget.This gadget is basically a egg, when you hover over it, it splits and reveals.. Add a Do you Like this Story Subscription Box below Posts (Animated)we managed to design a fully equipped blogger widget that contains Facebook Like & Send button,  Email Form (Subscription box) and social media icons. This widget can be found on many wordpress blogs added at the bottom of posts those button widgets in fact do not slide when the user scrolls the page up or down. The only thing I needed was a well constructed JavaScript code that could make the widget to float up and down synchronously Add Animated Rainbow Changing Colors To The Links On BloggerIn this post i have a neat effect for the links on your blog.Using some javascript you can make the links on your blog change through different colors when the cursor is hovered over them

Attractive + Smooth Scrolling "Back to Top" button for Blogger Blogs

Adding an attractive "Back to top" button to your Blogs can make it look more professional and most importantly it provides an easy navigation option to readers. This tutorial will show you how to add new "Back to top" button with "Smooth Scrolling" and "Fade out" effects. Actually its a jQuery script that does all the work (You can see the demo on this blog at the left bottom side). I kept the installation to only one step


Attractive + Smooth Scrolling "Back to Top" button for Blogger 

  1. Go to Blogger >> Design
  2. Add a new HTML/JavaScript
  3. Paste the following code to it

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script>
$(document).ready(function(){

    // hide #back-top first
    $("#back-top").hide();
   
    // fade in #back-top
    $(function () { 
        $(window).scroll(function () {
            if ($(this).scrollTop() > 100) {
                $('#back-top').fadeIn();
            } else {
                $('#back-top').fadeOut();
            }
        });

        // scroll body to 0px on click
        $('#back-top a').click(function () {
            $('body,html').animate({
                scrollTop: 0
            }, 800);
            return false;
        });
    });

});
</script>
<style>
#back-top {
position: fixed;
bottom: 30px;
margin-left: -170px;
}
#back-top a {
width: 45px;
display: block;
text-align: center;
font: 8px/100% Arial, Helvetica, sans-serif;
text-transform: uppercase;
text-decoration: none;
color: #666;
/* transition */
-webkit-transition: 1s;
-moz-transition: 1s;
transition: 1s;}
#back-top a:hover {color: #000;}
/* arrow icon undefinedspan tag) */
#back-top span {
width: 45px;
height: 45px;
display: block;
margin-bottom: 7px;
background: #777 url(http://1.bp.blogspot.com/-xFBEcD6WrPE/TtzFEwE6k4I/AAAAAAAAAVg/rHr7-Zc8fMI/s1600/up-arrow.png) no-repeat center center;
/* rounded corners */
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
/* transition */
-webkit-transition: 1s;
-moz-transition: 1s;
transition: 1s;}
#back-top a:hover span {   background-color: #000;}
</style>

<div id="back-top" style="display: block; ">
<a href="#top"><span></span><font><font>Top</font></font></a>
</div>

Replace Red Link(Image URL)

Share on Google Plus

About Unknown

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.
    Blogger Comment
    Facebook Comment

0 comments:

Post a Comment