Scroll to an Internal Link
Scrolling within page i.e. scroll to an internal link has experienced a huge growth in popularity in web design in recent years. Perhaps you’ve seen it before that when you click a link in the navigation, it takes you not to another page but a specific point within the current page. Actually it is very easy to do with some extremely basic HTML but if you want a nice scrolling animation when page goes up or bottom, you have to add some jQuey along with the HTML. This tutorial is about how to scroll to an internal link. I wish this simple and little trick works for you.
Before you make any changes, it's recommended to backup your blog template to avoid template crush if anything goes wrong.
Let's begin.
- Go to 'Blogger' dashboard.
- Click the drop-down arrow adjacent to 'Go to post list' icon and select 'Template' form the drop-down menu list.
- Click 'Edit HTML'.
- Skip this step if jQuery library already included in your blog template. Otherwise search for (Ctrl+F)
<head>and paste (Ctrl+V) the following line just after<head>. - Search for (Ctrl+F)
</head>, copy (Ctrl+C) the following code and paste (Ctrl+V) it before</head> - Click 'Save Template'. Enjoy !
<script type="text/javascript" src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<script type='text/javascript'>
//<![CDATA[
$(function() {
$('a[href^="#"]').click(function(e) {
$('html,body').animate({ scrollTop: $(this.hash).offset().top}, 900);
return false;
e.preventDefault();
});
});
//]]>
</script>
How to use? I mean in post editor.
ReplyDelete