Blogger Widgets
CLICK HERE FOR FREE BLOGGER TEMPLATES, LINK BUTTONS AND MORE! »
skip to main | skip to sidebar
ကၽြန္ေတာ့္ Blog ကို အထူးကူညီေပးတဲ့ဆရာက ကိုျပည့္ၿဖိဳး (MMitd) ပါခင္ဗ်ာ။ ကၽြန္ေတာ့္ site ကိုအလည္လာၾကသူမ်ားတခုခုေတာ့ရသြားေစခ်င္ပါတယ္။ လိုအပ္တာမ်ားကိုလည္း COMMENTS မွာေရးေပးၾကပါခင္ဗ်ာ။

Tuesday 7 May 2013

Blog မွာ Add Go to Top Button with CSS & Jquery for Blogger / Blogspot ထည့္ခ်င္ရင္

Add ‘Scroll to Top’ Button With CSS:-

- Use the Following Button To add this Widget on your Blog Easely



OR
-Use the Following code and Put it before </body> tag on your Template and Save.
<a title="Back to TOP" style="position: fixed; right: 15px; bottom: 15px; outline: medium none; border: 0px none;" href="#"><img border="0" alt="Back to TOP" src="http://i.imgur.com/Ffb7p.png"></a>

Add ‘Scroll to Top’ Button With jQuery:-

-Use the Following Button To add this Widget on your Blog Easely


OR
-Use the Following code and Put it before </body> tag on your Template and Save.
<style type="text/css">
#w2b-StoTop {-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius: 5px; width:100px;background-color: #EEEEEE;background-color: rgba(238, 238, 238, 0.6);filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#99EEEEEE',EndColorStr='#99EEEEEE');text-align:center;padding:5px;position:fixed;bottom:10px;right:10px;cursor:pointer;color:#444;text-decoration:none;border:1px solid #C9C9C9;}
</style>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script type='text/javascript'>
jQuery(function($) {
    $.fn.scrollToTop = function() {
	$(this).hide().removeAttr("href");
	if ($(window).scrollTop() != "0") {
	    $(this).fadeIn("slow")
	}
	var scrollDiv = $(this);
	$(window).scroll(function() {
	    if ($(window).scrollTop() == "0") {
		$(scrollDiv).fadeOut("slow")
	    } else {
		$(scrollDiv).fadeIn("slow")
	    }
	});
	$(this).click(function() {
	    $("html, body").animate({
		scrollTop: 0
	    }, "slow")
	})
    }
});
jQuery(function($) {
    $("#w2b-StoTop").scrollToTop();
});
</script>
<a href='#' id='w2b-StoTop' style='display:none;'>Scroll to Top </a>
You can Customize the CSS for Your Own Declarations and you can replace the text with Image also.
You Are Done!
ကိုထြန္းလင္း(တာပြန္)မွေႏြးေထြးစြာႀကိဳဆိုပါတယ္ခင္ဗ်ာ Facebook ရဲ႕ Like button ကိုႏွိပ္ျခင္းျဖင္႕ မိမိရဲ႕ Facebook ေပၚမွာ ဒီ Post ေလးေရာက္သြားမွာပါ။ ဒီ Post ေလးကိုသေဘာက်တယ္ဆိုရင္လည္း Like Button ေလးကိုႏွိပ္ခဲ႕ေပးပါေနာ္။
Stumble
Delicious
Technorati
Twitter
Digg
Facebook
Reddit
Feed

No comments:

Post a Comment