search
HomeWeb Front-endCSS TutorialCase Study: Combining Cutting-Edge CSS Features Into a 'Course Navigation” Component

Case Study: Combining Cutting-Edge CSS Features Into a “Course Navigation” Component

This article introduces the excellent article navigator designed by Jhey Tompkins and adapts it into the "course navigator" for online courses. We will dig deep into how it works, enabling a smooth interactive experience without JavaScript.

The main functions of this component include:

  • Links to all course content;
  • Smoothly scroll to the anchored chapter title;
  • Shows the reading progress of the current chapter;
  • Toggle light and dark mode;
  • Fixed to the bottom and supports folding when scrolling.

We will implement these features using the latest CSS features that are currently best supported in Chrome.

HTML structure

We use<details></details> The element creates an expandable component and pins it to the bottom of the page. Course content is included in<article></article> In the element, the chapter title is with an ID for the anchor link within the page. Click<summary></summary> Elements can switch course navigation, and the navigation content is wrapped in ::details-content pseudo-element. Navigate to links to other chapters and scroll to the title of the current chapter.<summary></summary> The element contains a label (used as a toggle button), current chapter name, scroll distance, and dark mode toggle switches.

The sample code is as follows:

<details><summary>
    <label></label>
  </summary></details>
<h1 id="Section-A">Section A</h1>
<p>...</p>
<h2 id="Section-B">Section B</h2>
<p>...</p>
<h2 id="Section-C">Section C</h2>
<p>...</p>

position

Using position: fixed and inset properties will<details></details> Elements are fixed at the bottom of the page:

 details {
  position: fixed;
  inset: 24px; /* used as margin*/
  place-self: end center; /* yx */
}

Pure CSS dark mode

In order to improve the readability of long-form content, we implement CSS dark mode.

In the HTML structure, we use a hidden checkbox<input type="checkbox"> , and a<i></i> Elements as styled checkboxes, and a<label></label> Elements as labels. All of this is wrapped in<summary></summary> In the element, and use<div> Add spacing to elements.<pre class="brush:php;toolbar:false">&lt;details&gt;&lt;summary&gt;&lt;label aria-label=&quot;Dark mode&quot;&gt; &lt;i&gt;&lt;/i&gt; Dark mode &lt;/label&gt; &lt;/summary&gt;&lt;/details&gt;</pre> <p>Icon switching is implemented using Font Awesome CSS attribute:</p> <pre class="brush:php;toolbar:false"> /* Copy from Font Awesome CSS*/ i::before { font-style: normal; font-family: &quot;Font Awesome 6 Free&quot;; display: inline-block; width: 1.25em; } /* Selected status*/ input[type=checkbox]:checked i::before { content: &quot;\f058&quot;; font-weight: 900; } /* Unselected status*/ input[type=checkbox]:not(:checked) i::before { content: &quot;\f111&quot;; font-weight: 400; }</pre> <p> Use <code>:root selector and :has pseudo-class to achieve light and dark mode switching:

 /* Dark Mode*/
:root:has(input[type=checkbox]:checked) {
  color-scheme: dark;
}

/* Ming mode*/
:root:not(:has(input[type=checkbox]:checked)) {
  color-scheme: light;
}

Use the light-dark() function to set the color:

 color: light-dark(hsl(var(--hs) 90%), hsl(var(--hs) 10%));
background: light-dark(hsl(var(--hs) 10%), hsl(var(--hs) 90%));

Show scrolling progress

Use progress loops and text percentages to display reading progress.

Define custom properties --percentage :

 @property --percentage {
  syntax: "<integer> ";
  inherits: true;
  initial-value: 0;
}</integer>

Use scroll() animation function to implement scroll-driven animation:

 @keyframes updatePercentage {
  to {
    --percentage: 100;
  }
}

:root {
  animation: updatePercentage;
  animation-timeline: scroll();
  counter-reset: percentage var(--percentage);
}

Use counter() function to display the percentage:

 #progress-percentage::before {
  content: counter(percentage) "%";
  min-width: 40px;
  display: inline-block;
}

Use conic-gradient() function to create a progress ring:

 #progress-pie {
  aspect-ratio: 1;
  background: conic-gradient(hsl(var(--hs) 50%) calc(var(--percentage) * 1%), light-dark(hsl(var(--hs) 90%), hsl(var(--hs) 10%)) 0%);
  border-radius: 50%;
  width: 17px;
}

Create a course navigation

Reset list style:

 ol {
  padding-left: 0;
  list-style-position: inside;
}

ol ol li::marker {
  color: transparent;
}

Use the :has and :not pseudo-classes to fade list items that are not current chapters:

 details {
  color: light-dark(hsl(var(--hs) 90%), hsl(var(--hs) 10%));
}

ol:has(ol) > li:not(.active) {
  color: light-dark(hsl(var(--hs) 80%), hsl(var(--hs) 20%));
}

a {
  color: inherit;
}

Enable Smooth Scrolling:

 :root {
  scroll-behavior: smooth;
  scroll-padding-top: 20px;
}

<details></details> Element transition effect

Use interpolate-size: allow-keywords and transition properties to achieve smooth expansion and collapse:

 :root {
  interpolate-size: allow-keywords;
}

details::details-content {
  overflow-y: clip;
}

/* ... (Style codes for details:not([open])::details-content and details[open]::details-content) ... */

<summary></summary> Element style

Add tags and icons:

<details><summary aria-label="Navigate course">
    <i></i>
    Navigate course
  </summary></details>

Set the layout using display: flex and gap properties:

 /* ... (i::before style code) ... */

summary::-webkit-details-marker {
  display: none;
}

summary {
  cursor: pointer;
}

label {
  cursor: inherit;
}

Automatic shutdown mechanism (optional JavaScript)

Use JavaScript to achieve automatic closing of the mouse when leaving:

 document.querySelector("details").addEventListener("mouseleave", e => e.target.removeAttribute("open"));

Automatic color scheme (optional JavaScript)

Use JavaScript to detect user preference color schemes and automatically set:

 if (window.matchMedia("prefers-color-scheme: dark").matches) {
  document.querySelector("input[type=checkbox]").checked = true;
}

Summarize

This article shows how to use a range of cutting-edge CSS features to create a powerful course navigation component, including scroll-driven animations, interpolate-size attributes, light-dark() function, conic-gradient() function, and style settings for ::details-content pseudo-elements. Thanks to Jhey Tompkins for his inspiration!

The above is the detailed content of Case Study: Combining Cutting-Edge CSS Features Into a 'Course Navigation” Component. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Simulating Mouse MovementSimulating Mouse MovementApr 22, 2025 am 11:45 AM

If you've ever had to display an interactive animation during a live talk or a class, then you may know that it's not always easy to interact with your slides

Powering Search With Astro Actions and Fuse.jsPowering Search With Astro Actions and Fuse.jsApr 22, 2025 am 11:41 AM

With Astro, we can generate most of our site during our build, but have a small bit of server-side code that can handle search functionality using something like Fuse.js. In this demo, we’ll use Fuse to search through a set of personal “bookmarks” th

Undefined: The Third Boolean ValueUndefined: The Third Boolean ValueApr 22, 2025 am 11:38 AM

I wanted to implement a notification message in one of my projects, similar to what you’d see in Google Docs while a document is saving. In other words, a

In Defense of the Ternary StatementIn Defense of the Ternary StatementApr 22, 2025 am 11:25 AM

Some months ago I was on Hacker News (as one does) and I ran across a (now deleted) article about not using if statements. If you’re new to this idea (like I

Using the Web Speech API for Multilingual TranslationsUsing the Web Speech API for Multilingual TranslationsApr 22, 2025 am 11:23 AM

Since the early days of science fiction, we have fantasized about machines that talk to us. Today it is commonplace. Even so, the technology for making

Jetpack Gutenberg BlocksJetpack Gutenberg BlocksApr 22, 2025 am 11:20 AM

I remember when Gutenberg was released into core, because I was at WordCamp US that day. A number of months have gone by now, so I imagine more and more of us

Creating a Reusable Pagination Component in VueCreating a Reusable Pagination Component in VueApr 22, 2025 am 11:17 AM

The idea behind most of web applications is to fetch data from the database and present it to the user in the best possible way. When we deal with data there

Using 'box shadows' and clip-path togetherUsing 'box shadows' and clip-path togetherApr 22, 2025 am 11:13 AM

Let's do a little step-by-step of a situation where you can't quite do what seems to make sense, but you can still get it done with CSS trickery. In this

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

Atom editor mac version download

Atom editor mac version download

The most popular open source editor