Hello friends, want to set smoth scroll on your one page template. It's so easy. Just past this code in your website:
- this is a jQuery code. so you should keep in script tag. such as <script> <script>.
- Past this code before footer section.
- if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
- && location.hostname == this.hostname) {
- var $target = $(this.hash);
- $target = $target.length && $target
- if ($target.length) {
- $('html,body')
- return false;
- }
- }
- });
- });
Full code with script tag:
<script>
- if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
- && location.hostname == this.hostname) {
- var $target = $(this.hash);
- $target = $target.length && $target
- if ($target.length) {
- $('html,body')
- return false;
- }
- }
- });
- });
</script>
Comments
Post a Comment