Click on the anchor link in JS to scroll smoothly and adjust to the top position freely

Click on the anchor link in JS to scroll smoothly and adjust to the top position freely

Click on the anchor link to scroll smoothly and adjust freely to the top position

1. Add anchor points. Note that the a tag uses nacTo instead of href.

<ul>
	<li><a class="anchor" navTo="one">Target selection</a></li>
	<li><a class="anchor" navTo="two">Target customers</a></li>
	<li><a class="anchor" navTo="three">Advertising Format</a></li>
	<li><a class="anchor" navTo="four">Advertising</a></li>
	<li><a class="anchor" navTo="five">Budget and schedule</a></li>
	<li><a class="anchor" navTo="six">Conversion Tracking</a></li>
</ul>

2. Add the corresponding id to the content that needs to be scrolled on the right

<div class="right">
			<div id="one">
				<div class="target">
					<i>Your goal is to:</i>
					<div class="brand_engagement"><img src="img/signal.png" /><i>Brand Engagement</i><b>Change</b></div>
					<p>I want people to know about my business. </p>
					<div class="advertising_that">
						<img src="img/right.png" /> Your ad will be shown to the right people most likely to view your ad. </b>
					</div>
				</div>
			</div>
			<div id="two">
				The second part of the content </div>
			<div id="three">
				The third part of the content </div>
			<div id="four">
				The fourth part of the content </div>
			<div id="five">
				The fifth part of the content </div>
		</div>

3. Add js to smoothly scroll to the top distance (150 is the height of the navigation, which can be adjusted freely as needed)

$('.anchor').click(function () {
		var navto = $(this).attr('navto');
		if (navto != "#") {
			var $div = $('#' + navto);
			var top = $div.offset().top || 0;
			$('html,body').animate({
				'scroll-top': top - 150
			}, 500);
		} else {
			$('html,body').animate({
				'scroll-top': 0
			}, 500);
		}
	});

OK~ Effect display

insert image description here

This is the end of this article about smooth scrolling when clicking on anchor links in JS and freely adjusting to the top position. For more relevant js anchor link smooth scrolling content, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Vue.js practice: implementing dynamic anchor points by listening to scroll events
  • JS implements the method of placing the mouse on the link to display scrolling text
  • Link horizontal text up and down gap loop scroll JS effect
  • Link image seamless (uninterrupted) smooth scrolling to the left Js version code

<<:  Detailed explanation of eight ways to optimize MySQL database (classic must-read)

>>:  Tutorial on configuring and using i3 window manager in Linux

Recommend

5 JavaScript Ways to Flatten Arrays

Table of contents 1. Concept of array flattening ...

Basic knowledge of HTML: a preliminary understanding of web pages

HTML is the abbreviation of Hypertext Markup Langu...

MySQL data table partitioning strategy and advantages and disadvantages analysis

Table of contents Why do we need partitions? Part...

MySQL 8.0.12 decompression version installation tutorial personal test!

Mysql8.0.12 decompression version installation me...

MySQL index principle and usage example analysis

This article uses examples to illustrate the prin...

Practice of using Tinymce rich text to customize toolbar buttons in Vue

Table of contents Install tinymce, tinymce ts, ti...

A brief discussion on the lock range of MySQL next-key lock

Preface One day, I was suddenly asked about MySQL...

Differences and comparisons of storage engines in MySQL

MyISAM storage engine MyISAM is based on the ISAM...

25 Tools to Improve Website Usability and Conversion Rates

For a website, usability refers to whether users c...

Solution to the CSS height collapse problem

1. High degree of collapse In the document flow, ...

CSS to achieve single-select folding menu function

Don’t introduce a front-end UI framework unless i...

Summary of discussion on nginx cookie validity period

Every visit will generate Cookie in the browser, ...

Example of creating a virtual host based on Apache port

apache: create virtual host based on port Take cr...