Moving from one div to another on click of a menu link

前端 未结 4 974
轻奢々
轻奢々 2021-01-15 06:25

I want to make an animation effect on my website where, when we click on a menu link (say, about-section), it will animate to that div in a parallax style.

So guys if

4条回答
  •  一个人的身影
    2021-01-15 06:39

    please try this

    .Home-section {
      height:500px;
      background: deepskyblue;
      }
    
    .About-section {
      height:300px;
      background:deeppink;
      }
    a{cursor:pointer}
    

    html code

    
      
     Home
     About
    

    Hello

    Bye

    and also js fiddlde here

提交回复
热议问题