I would like to know how I can do that once I click the link of a page in the main menu, the page will gently scroll to the desired page that was clicked?
Example: link
I wanted an example using links, there is a question using buttons here but I am having difficulty converting. I'm starting to study jQuery now.
I have the following code:
<nav class="collapse navbar-collapse clearfix" role="navigation">
<ul class="nav navbar-nav navbar-right">
<li class="active"><a href="#">Home</a>
</li>
<li><a href="#nos">Sobre nós</a>
</li>
<li><a href="#servico">Serviços</a>
</li>
</ul>
</nav>
<section id="servico" class="wow fadeInUp">
<div class="container">
<div class="row">
<div class="col-md-3 col-sm-3">
<div class="service-content"> <a href="#."><span class="service-icon"><i class="fa fa-desktop img-circle wow flipInX"></i></span></a>
<h3>Responsive Layout</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque ultricies vestibulum Graphic river molestie.</p>
</div>
</div>
</div>
</div>
</section>