Skip to content

[Feature] - Scroll to top button added #208

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 66 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,10 @@
--theme-switch: var(--switch-auto-black);
}

html {
scroll-behavior: smooth;
}

html, body {
margin: 0;
padding: 0;
Expand Down Expand Up @@ -233,7 +237,44 @@
top: 0;
transform: scale(0.75, 0.75);
}

.scrollTopBtn{
position: fixed;
z-index:100;
border-radius: 50%;
border-color: var(--secondary-color);
background-color: var(--secondary-color);
right: 3rem;
bottom: 3rem;
width: 40px;
height: 40px;
display: none;
cursor: pointer;
}

.scrollTopBtn:hover{
background-color: var(--secondary-variant-color);
border-color: var(--secondary-variant-color);
}

.scrollTopBtn svg{
width: 40px;
height: 40px;
}

@media screen and (max-width: 767px) {
.scrollTopBtn {
bottom: 2rem;
right: 1rem;
width: 30px;
height: 30px;
}
.scrollTopBtn svg{
width: 30px;
height: 30px;
}
}

footer {
font-size: 0.9rem;
text-align: center;
Expand Down Expand Up @@ -586,6 +627,10 @@ <h2><a href="#custom-canvas" id="custom-canvas" class="anchor">Custom Canvas</a>
</div>
</div>
</div>

<div class="scrollTopBtn" id="scrollToTop">
<svg xmlns="http://www.w3.org/2000/svg" fill="white" class="bi bi-arrow-up-circle" viewBox="0 0 16 16"> <path fill-rule="evenodd" d="M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8zm15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-7.5 3.5a.5.5 0 0 1-1 0V5.707L5.354 7.854a.5.5 0 1 1-.708-.708l3-3a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1-.708.708L8.5 5.707V11.5z"/> </svg>
</div>

<footer>
<a href="https://github.com/catdad">
Expand Down Expand Up @@ -972,6 +1017,27 @@ <h2><a href="#custom-canvas" id="custom-canvas" class="anchor">Custom Canvas</a>
editors.push(editor);
});
};

// Function to show/hide the "Scroll to Top" button
function toggleScrollTopButton() {
if (document.documentElement.scrollTop > 100) {
document.getElementById('scrollToTop').style.display = 'block';
} else {
document.getElementById('scrollToTop').style.display = 'none';
}
}

// Trigger on scroll event
window.addEventListener('scroll', toggleScrollTopButton);

// Function to scroll back to the top
function scrollToTop() {
document.documentElement.scrollTo({
top: 0
});
}

document.getElementById('scrollToTop').addEventListener('click', scrollToTop);
</script>

<script>
Expand Down