Skip to main content

A Streamlit custom component to allow one click scrolling to different locations on your page

Project description

streamlit-scroll-to-top

Streamlit component which provides a hacky workaround to utilise streamlit buttons, iframes and state management to redirect users to different points on a page.

Streamlit App

Buy Me A Coffee

How does it work?

The component works by creaing an invisible iframe in the location you want to scroll to and then tells the parent window to move the focus to that iframe. See the Example usage further below to get a further idea of how it works/how to implement it in your code. There are other ways to do this however I wanted a way I could easily use streamlit buttons & the session state to move the user to different locations.

This may stop working at any moment or indeed may not work on some browsers. I've tested on Edge, Chrome, Firefox & Opera and all appears to be OK

Features

  • Scroll to the top of a page (or any point) easily using existing Streamlit buttons.

Installation

pip install streamlit-scroll-to-top

Example Usage

Copy this code snippet:

import streamlit as st
from streamlit_scroll_to_top import scroll_to_here

# Step 1: Initialize scroll state in session_state
if 'scroll_to_top' not in st.session_state:
    st.session_state.scroll_to_top = False
    
if 'scroll_to_header' not in st.session_state:
    st.session_state.scroll_to_header = False

# Step 2: Handle the scroll-to-top action
if st.session_state.scroll_to_top:
    scroll_to_here(0, key='top')  # Scroll to the top of the page
    st.session_state.scroll_to_top = False  # Reset the state after scrolling

# Step 3: Define a scroll function to trigger the state change
def scroll():
    st.session_state.scroll_to_top = True
    
def scrollheader():
    st.session_state.scroll_to_header = True

# Step 4: Add some dummy content to simulate a long page
st.title("Dummy Content")
st.write("Scroll down to see the 'Scroll to Top' button.")
for i in range(50):  # Generate dummy content
    if i == 25:
        if st.session_state.scroll_to_header:
            scroll_to_here(0, key='header')  # Scroll to the top of the page
            st.session_state.scroll_to_header = False  # Reset the state after scrolling
        st.header("Or scroll here")
    st.text(f"Line {i + 1}: This is some dummy content.")

# Step 5: Add a button to trigger the scroll to top action. Both ways work... personal preference
st.button("Scroll to Top", on_click=scroll)
if st.button("Scroll to Top 2"):
    st.session_state.scroll_to_top = True
    st.rerun()
    
# Step 5: Add a button to trigger the scroll to header action. Both ways work... personal preference    
st.button("Scroll to Header", on_click=scrollheader)
if st.button("Scroll to Header 2"):
    st.session_state.scroll_to_header = True
    st.rerun()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

streamlit_scroll_to_top-0.0.4.tar.gz (402.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

streamlit_scroll_to_top-0.0.4-py3-none-any.whl (2.3 MB view details)

Uploaded Python 3

File details

Details for the file streamlit_scroll_to_top-0.0.4.tar.gz.

File metadata

  • Download URL: streamlit_scroll_to_top-0.0.4.tar.gz
  • Upload date:
  • Size: 402.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.9

File hashes

Hashes for streamlit_scroll_to_top-0.0.4.tar.gz
Algorithm Hash digest
SHA256 148bbaa31ca91444a94d4b1f846bcdc0de5f6b2eccaf9e815805754892a9d7f6
MD5 7e9dfcc3913e37f8c9de10c7025e87f3
BLAKE2b-256 d20626f13270ea77f0fddec15b11955dad1c1130897c87f6a4c3040221051ef7

See more details on using hashes here.

File details

Details for the file streamlit_scroll_to_top-0.0.4-py3-none-any.whl.

File metadata

File hashes

Hashes for streamlit_scroll_to_top-0.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 4e894ee1377fd0d65c799c39463d382d9a72fb9c592dde566ea3f6c109154128
MD5 2a0c2b3adc219a142eb7d48b10938517
BLAKE2b-256 ce899099f3c5fab4b7ecef73a16bb80a59d6501d5b8ae904df162700460d15e1

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page