1
私はこのような画像が必要です。また、リストが動的になるようにナビゲーションボタンのクリック時に水平にスクロールするナビゲーションボタンが必要です。 以下のコードをCSSとHTMLで挿入しています。これはCSSでのみ行う必要がありますが、ナビゲーションアイコンにはJavaScriptを使用できます。また、<li>
要素のテキストが長すぎても重複してはいけません。
.timeline {
white-space: nowrap;
overflow-x: hidden;
}
.timeline ol {
font-size: 0;
width: 100vw;
padding: 250px 0;
transition: all 1s;
}
.timeline ol li {
position: relative;
display: inline-block;
list-style-type: none;
width: 160px;
height: 3px;
background: #e1e2e3;
}
.timeline ol li:last-child {
width: 280px;
}
.timeline ol li:not(:first-child) {
margin-left: 14px;
}
.timeline ol li:not(:last-child)::after {
content: '';
position: absolute;
top: 50%;
left: calc(100% + 1px);
bottom: 0;
width: 12px;
height: 12px;
transform: translateY(-50%);
border-radius: 50%;
background: #e1e2e3;
}
<div class="timeline">
<ol>
<li>abc</li>
<li>hello welcome</li>
<li>cool summer</li>
<li>hi there</li>
<li>whats up</li>
</ol>
</div>
をまずは頭の良いアイデアになる。灰色の線を作成するためにLI自体を使用しないでください。テキストを表示するには、それ以外のものはあまり意味がありません。 – CBroe
灰色の線を作成するには、疑似要素を使用する必要があります。私はあなたが私たちを助けてくれるようにフィドルを作成するべきだと思う。 –
@TonySamperiあなたはそれを修正するために "上のスニペットをクリック"することができます。コードスニペットの最後に上記のオプションがあります – koku19