Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

203
Views
How will the page scroll to the next section if the arrow is clicked?

I want that when I click on the arrow, the website will scroll down to the next section, called rest in my code. So it will move 100vh. I don't know how I must do this, I think there must be some JS in it. Does anyone know how I can get what I want? See image below, so it will be clear. Thanks in advance!

HTML:

<html>
    <head>
        <meta name="viewport" content="width=Ddevice-width, initial-scale=1.0">
        <title>Korps Commandotroepen</title>
        <link rel="stylesheet" href="style5.css">
    </head>
    <body>
        <div class="bg">
            <button class="button">
                <div class="button__arrow button__arrow--down"></div>
            </button>
        </div>
        <div class="rest">

        </div>
    </body>
</html>

CSS:

.bg{
    width: 100%;
    height: 100vh;
    background-color: black;
}
.button {
    border-radius: 20px;
    padding: 8px;
    position: absolute;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    position: fixed; 
    bottom:8%;
}
.button__arrow {
    background-color: transparent;
    height: 12px;
    width: 12px;
}
.button__arrow--down {
    border-bottom: 3px solid rgba(0, 0, 0, 0.3);
    border-right: 3px solid rgba(0, 0, 0, 0.3);
    transform: translateY(-25%) rotate(45deg);
}
.rest{
    width: 100%;
    height: 100vh;
    background-color: aliceblue;
}

Image:

enter image description here

about 4 years ago · Juan Pablo Isaza
3 answers
Answer question

0

I think you can do it by simply putting arrow in tag and in href give the id of rest.

  
CSS:

.bg{
    width: 100%;
    height: 100vh;
    background-color: black;
}
.button {
    border-radius: 20px;
    padding: 8px;
    position: absolute;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    position: fixed; 
    bottom:8%;
}
.button__arrow {
    background-color: transparent;
    height: 12px;
    width: 12px;
}
.button__arrow--down {
    border-bottom: 3px solid rgba(0, 0, 0, 0.3);
    border-right: 3px solid rgba(0, 0, 0, 0.3);
    transform: translateY(-25%) rotate(45deg);
}
.rest{
    width: 100%;
    height: 100vh;
    background-color: aliceblue;
}
<html>

<head>
  <meta name="viewport" content="width=Ddevice-width, initial-scale=1.0">
  <title>Korps Commandotroepen</title>
  <link rel="stylesheet" href="style5.css">
</head>

<body>
  <div class="bg">
    <button class="button">
                <a href="#rest"><div class="button__arrow button__arrow--down"></div></a>
            </button>
  </div>
  <div class="rest" id="rest">

  </div>
</body>

</html>

<!-- begin snippet: js hide: false console: true babel: false -->

about 4 years ago · Juan Pablo Isaza Report

0

Simple approach using scroll-behavior: smooth; and a tag instead of button.

window.onscroll = function () {
    var height = $(window).height();
    var scrollTop = $(window).scrollTop();
    var obj = $('#scroll');
    var pos = obj.position();
    if (height + scrollTop < pos.top) {
       $('.button').fadeIn();
    }
    else {
       $('.button').fadeOut(); 
    }
}
html {
  scroll-behavior: smooth;
}

.bg {
  width: 100%;
  height: 100vh;
  background-color: black;
}

.button {
  border-radius: 20px;
  padding: 8px;
  position: absolute;
  left: 50%;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  position: fixed;
  bottom: 8%;
  background: #ccc;
}

.button__arrow {
  background-color: transparent;
  height: 12px;
  width: 12px;
}

.button__arrow--down {
  border-bottom: 3px solid rgba(0, 0, 0, 0.3);
  border-right: 3px solid rgba(0, 0, 0, 0.3);
  transform: translateY(-25%) rotate(45deg);
}

.rest {
  width: 100%;
  height: 100vh;
  background-color: aliceblue;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<html>

<head>
  <meta name="viewport" content="width=Ddevice-width, initial-scale=1.0">
  <title>Korps Commandotroepen</title>
  <link rel="stylesheet" href="style5.css">
</head>

<body>
  <div class="bg">
    <a href="#scroll" class="button">
      <div class="button__arrow button__arrow--down"></div>
    </a>
  </div>
  <div id="scroll" class="rest"></div>
</body>

</html>

about 4 years ago · Juan Pablo Isaza Report

0

   <html>
<head>
<meta name="viewport" content="width=Ddevice-width, initial- 
scale=1.0">
<title>Korps Commandotroepen</title>
<link rel="stylesheet" href="style5.css">
 </head>
 <body>
<div class="bg">
    <button class="button">
        <div class="button__arrow button__arrow--down" id="button__arrow         
button__arrow--down" onClick="topFunction()"></div>
    </button>
</div>
    <div class="rest">

    </div>
 <script>

var mybutton = document.getElementById("button__arrow button__arrow-- 
down");

var close = document.getElementsByClassName("button")[0];

function topFunction() {
document.body.scrollTop = 1000;
document.documentElement.scrollTop = 1000;
}
var close = document.getElementsByClassName("button")[0];
close.onclick = function() {
  close .style.display = "none";
}
</script>
<style>
.bg{
width: 100%;
height: 100vh;
background-color: black;
}
.button {
border-radius: 20px;
padding: 8px;
position: absolute;
left: 50%;
-ms-transform: translateX(-50%);
transform: translateX(-50%);
position: fixed; 
bottom:8%;
}
.button__arrow {
background-color: transparent;
height: 12px;
width: 12px;
}
.button__arrow--down {
border-bottom: 3px solid rgba(0, 0, 0, 0.3);
border-right: 3px solid rgba(0, 0, 0, 0.3);
transform: translateY(-25%) rotate(45deg);
}
.rest{
width: 100%;
height: 100vh;
background-color: aliceblue;
}
</style>
</body>
</html>
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!