jQuery- Parallax Scroll using jQuery

Parallax Scroll using jQuery

HTML:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<div>
  <ul>
   <li><a href="#scroll1">Scroll 1</a></li>
   <li><a href="#scroll2">Scroll 2</a></li>
   <li><a href="#scroll3">Scroll 3</a></li>
   <li><a href="#scroll4">Scroll 5</a></li>
   <li><a href="#scroll5">Scroll 5</a></li>
  </ul>
</div>
 
<section id="scroll1">Scroll Content 1</section>
<section id="scroll2">Scroll Content 2</section>
<section id="scroll3"> Scroll Content 3</section>
<section id="scroll4"> Scroll Content 4</section>
<section id="scroll5">Scroll Content 5</section>
SCRIPT:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
jQuery(function() {
  jQuery('a[href*=#]:not([href=#])').click(function() {
    if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
 
      var target = jQuery(this.hash);
      target = target.length ? target : jQuery('[name=' + this.hash.slice(1) +']');
      if (target.length) {
        jQuery('html,body').animate({
          scrollTop: target.offset().top - 140
        }, 1000);
        return false;
      }
    }
  });
});

NOTE:

1. Please be sure, jQuery library has included for the page.

2. Put sufficient content section part.

WordPress plugin- Share Post On WhatsApp


Description
Share posts/page/custom post to whatsApp.

Feature
Setting to Enable/Disable WhatsApp Share Icon


Installation
  1. Upload the folder “share-post-on-whatsapp” to “/wp-content/plugins/”
  2. Activate the plugin through the “Plugins” menu in WordPress
  3. Manage setting to ‘Enable/Disable WhatsApp Share Icon’ by going WP-admin -> Settings ->Share Post on WhatsApp
  4. Enjoy! as there is setting to Enable/Disable WhatsApp Share Icon in admin.
Output

  Download plugin