P粉8685860322023-08-18 10:44:43
sure! To achieve a smooth scrolling effect on your website, you can use the following CSS rules:
html { scroll-behavior: smooth; }
To create internal links that trigger smooth scrolling, use anchor tags like this in your HTML:
<a href="#section1">跳转到第一部分</a> <a href="#section2">跳转到第二部分</a> <section id="section1"> <!-- 第一部分的内容 --> </section> <section id="section2"> <!-- 第二部分的内容 --> </section>
By using this method, your website scrolling will feel smoother and more comfortable for users.