Jump to content

Animated Scroll Line

Recommended Posts

Posted

Hello! Does anyone have thoughts on animating a vertical line like in this sample?

- Hannah

A brand designer & strategist creating brands that bridge the gaps between artistry, strategy, and thoughtful consideration. Creator of Studio Founded, a digital resource library for purposeful business owners. 
💻 Shop Squarespace Templates
✍️ Curated Business Resources

🥰 Complimentary Downloadables
🤍 Bespoke Branding & Websites

Links in my posts may be affiliate links.

  • Replies 2
  • Views 2.3k
  • Created
  • Last Reply
Posted

You can use a css animation to do this. you create a div element that is set to the size and initial background you want, then you add in a pseudo-element inside that moves from out-of-view at the top to the middle and then move it out-of-view below

Add a code block and put this in. there's no javascript so doesn't require premium/business

<div class="animated-line"></div>

<style>
  
.animated-line {
  margin:0 auto;
  width:5px;
  height:300px;
  overflow:hidden;
  background:#999;
  position:relative;
}

.animated-line::before {
  content:'';
  display:block;
  width:5px;
  height:300px;
  background:black;
  position:absolute;
  top:-100%;
  left:0;
  animation: animate 5s ease-in-out infinite;
}

@keyframes animate {
  0% { top: -100%; }
  50% { top: 0; }
  100% { top: 100%; }
}
  
</style>

if you want to edit some of the animation properties then you should probably look at the css animation properties  for the "animation" property (e.g. 5s is the duration change it to 2s for faster) and edit the keyframe positions

see here for the properties CSS Animations (w3schools.com)

 

Dave Hart. Software/Technology Consultant living in London. buymeacoffee 

Posted

@iamdavehart Perfection - thank you!

A brand designer & strategist creating brands that bridge the gaps between artistry, strategy, and thoughtful consideration. Creator of Studio Founded, a digital resource library for purposeful business owners. 
💻 Shop Squarespace Templates
✍️ Curated Business Resources

🥰 Complimentary Downloadables
🤍 Bespoke Branding & Websites

Links in my posts may be affiliate links.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Squarespace Webinars

Free online sessions where you’ll learn the basics and refine your Squarespace skills.

Hire a Designer

Stand out online with the help of an experienced designer or developer.