Add Go to Top Button with Jquery for Blogger/Blogspot
Add “Go to Top Button” with Jquery. It is a Shortcut to come to top when you are at Bottom of Page...
Add ‘Scroll to Top’ Button With Jquery:-
- Go To Blogger > Design > Edit HTML
- Back up your template
- Check the Expand Widget Templates box
- Then Use the Following code and Put it before
</body>
tag on your Template and Save...
<style type='text/css'> #MFS-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="http://yourjavascript. <script type='text/javascript'> $(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") }) } }); $(function() { $("#MFS-StoTop").scrollToTop(); }); </script> <center> <a href='#' id='MFS-StoTop' style='display:none;'>Scroll to Top </a> </center> |
You Are Done!
Thanks Take Care !!!
No comments:
Post a Comment