首页 > 解决方案 > 在 CSS 中滚动填充一个圆圈

问题描述

我正在尝试用一种颜色填充一个茎,并用圆圈沿着茎的台阶。

这是我目前目标的一个例子:https ://codepen.io/nicklassandell/pen/ztGac

这是我目前拥有的:https : //codepen.io/TheOshika/full/xxRRVNb(设计类似于上面的代码,但我从头开始编写代码)我正在使用滚动脚本来触发填充圈子里的动画。但是我对此并不满意,因为触发器的偏移量对于响应式设计来说太难设置了。我现在正在考虑删除 javascript 部分,取而代之的是用滚动填充圆圈的茎,但没有动画。

这就是我要找的东西,除了我不知道如何让茎中的背景颜色填满圆圈:

.header {
  position: relative;
  height: 800px;
  background: blueviolet;
  z-index: 3;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: #4c63b6;
}

.container {
  margin: 0px auto;
  position: relative;
}

/* stem */
.filling-stem {
  position: sticky;
  z-index: 1;
  float: left;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  height: 50vh;
  width: 5px;
  background-color: #bed0f7;
}

.stem-background {
  position: absolute;
  z-index: 0;
  left: 50%;
  transform: translate(-50%, 0);
  height: 100%;
  width: 5px;
  background-color: #1f2933;
}

.stem-nav {
  position: absolute;
  z-index: 2;
  left: 50%;
  transform: translate(-50%, 0);
  height: 100%;
}

#my-awesome-nav {
  display: flex;
  height: 100%;
  justify-content: space-around;
  flex-direction: column;
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

#my-awesome-nav li a {
  border: solid 3px black;
  border-radius: 50%;
  display: inline-block;
  background-color: #1f2933;
}

#my-awesome-nav li a .color-change {
  height: 40px;
  width: 40px;
  background-color: #1f2933;
  border-radius: 50%;
}

/* timeline */
.timeline-container {
  position: relative;
}

.step-container {
  margin: 0 25% 0 25%;
  display: flex;
  align-items: center;
  height: 1500px;
}

/* footer */
footer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 1000px;
  width: 100%;
  background-color: black;
  color: white;
}
<div class="container">
  <div class="container-inner">

    <div class="filling-stem"></div>
    <div class="header"></div>

    <div class="timeline-container">
      <div class="timeline-container-inner">
        <div class="stem-background"></div>
        <div class="stem-nav">
          <ul id="my-awesome-nav">
            <li data-index="0"><a href="#step-one">
                <div class="color-change one"></div>
              </a></li>
            <li data-index="1"><a href="#step-two">
                <div class="color-change two"></div>
              </a></li>
            <li data-index="2"><a href="#step-three">
                <div class="color-change three"></div>
              </a></li>
            <li data-index="3"><a href="#step-four">
                <div class="color-change four"></div>
              </a></li>
            <li data-index="4"><a href="#step-five">
                <div class="color-change five"></div>
              </a></li>
          </ul>
        </div>
        <div class="step-container">
          <div class="step-container-inner">
          </div>
        </div>
      </div>
    </div>
  </div>
</div>
<footer>
  <p>End of the page</p>
</footer>

标签: javascripthtmlcss

解决方案


应该可以仅使用 CSS 获得所需的“填充”效果。

我们为每个 li 元素添加一个伪之前和伪之后元素。它们有一个径向渐变背景,在包含 a(锚)元素的圆圈的位置有一个透明的“咬合”。在整个事物的后面,我们放置了一个固定元素,该元素在上半部分具有“填充”颜色,在下半部分具有较暗(未填充)的颜色。这是通过给它一个线性渐变的背景图像来完成的。

现在不需要内部 div(在锚元素内部)。

这是一个展示这个想法的片段。引入了 CSS 变量,以便在需要时更轻松地更改尺寸。(注意:这里有多余的 CSS 可以用来整理。)

* {
  margin: 0;
  padding: 0;
  
  --stemw: 5px; /* the width of the stem */
  --circled: 40px; /* the diameter of the circles */
  --lih: 300px; /* the height of each list item */
  --nolis: 5; /* the number of items in the list */
  
  --halfstemw: calc(var(--stemw) / 2);
  --circler: calc(var(--circled) / 2); /* the circle radius */
  --halflih: calc(var(--lih) / 2);
}

div.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: linear-gradient(to top, #1f2933 0%, #1f2933 50%, #bed0f7 50%, #bed0f7 100%);
  overflow: hidden;
}

#my-awesome-nav li {
  position: relative;
}

#my-awesome-nav li::before, #my-awesome-nav li::after {
  position: absolute;
  transform: translateX(calc(-100% + var(--circler)));
  width: calc(50vw - var(--halfstemw));
  height: var(--lih);
  top: calc(var(--halflih) * -1);
  content: '';
  z-index: -1;
}

#my-awesome-nav li::before {
  left: 0;
  background: radial-gradient(circle at calc(100% + var(--halfstemw)) calc(50% + var(--circler)), transparent 0%, transparent 3%,  #4c63b6 3%, #4c63b6 100%);
}

#my-awesome-nav li::after{
  left: calc(50vw + var(--halfstemw));
  background: radial-gradient(circle at calc(var(--halfstemw) * -1) calc(50% + var(--circler)), transparent 0%, transparent 3%,  #4c63b6 3%, #4c63b6 100%);
}

.header {
  position: relative;
  height: 800px;
  background: blueviolet;
  z-index: 3;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: #4c63b6;
}

.container {
  margin: 0px auto;
  position: relative;
}

/* stem */
.filling-stem {
  position: sticky;
  z-index: 1;
  float: left;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  height: 50vh;
  width: 5px;
  background-color: #bed0f7;
}

.stem-background {
  position: absolute;
  z-index: 0;
  left: 50%;
  transform: translate(-50%, 0);
  height: 100%;
  width: 5px;
  background-color: #1f2933;
}

.stem-nav {
  position: absolute;
  z-index: 2;
  left: 50%;
  transform: translate(-50%, 0);
  height: 100%;
}

#my-awesome-nav {
  display: flex;
  height: 100%;
  justify-content: space-around;
  flex-direction: column;
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

#my-awesome-nav li a {
  width: 40px;
  height: 40px;
  border: solid 3px black;
  border-style: none;
  border-radius: 50%;
  display: inline-block;
  background-color: #1f2933;
  background-color: transparent;
}
/*
#my-awesome-nav li a .color-change {
  height: 40px;
  width: 40px;
  background-color: #1f2933;
  border-radius: 50%;
  background-color: transparent;
}
*/
/* timeline */
.timeline-container {
  position: relative;
}

.step-container {
  margin: 0 25% 0 25%;
  display: flex;
  align-items: center;
  height: 1500px;
}

/* footer */
footer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 1000px;
  width: 100%;
  background-color: black;
  color: white;
}
<div class="bg"></div>

<div class="container">
  <div class="container-inner">

    <div class="filling-stem"></div>
    <div class="header"></div>

    <div class="timeline-container">
      <div class="timeline-container-inner">
        <div class="stem-background"></div>
        <div class="stem-nav">
          <ul id="my-awesome-nav">
            <li data-index="0"><a href="#step-one">
              </a></li>
            <li data-index="1"><a href="#step-two">
              </a></li>
            <li data-index="2"><a href="#step-three">
              </a></li>
            <li data-index="3"><a href="#step-four">
              </a></li>
            <li data-index="4"><a href="#step-five">
              </a></li>
          </ul>
        </div>
        <div class="step-container">
          <div class="step-container-inner">
          </div>
        </div>
      </div>
    </div>
  </div>
</div>
<footer>
  <p>End of the page</p>
</footer>

脚注:在视网膜屏幕上,我偶尔会在伪元素之间看到一条微弱的线条——我认为这是定位计算来自 CSS 像素的一部分(在高分辨率屏幕上可能意味着屏幕像素“落后”) . 可能需要使伪元素高 1 个 CSS 像素以与下一个元素重叠,从而为背景提供连续效果。


推荐阅读