Home>Article>Web Front-end> Teach you step by step how to use CSS to customize beautiful scroll bar styles!

Teach you step by step how to use CSS to customize beautiful scroll bar styles!

青灯夜游
青灯夜游 forward
2021-07-08 10:38:44 12312browse

Customized scroll bars are becoming more and more popular now and are worth studying. The following article will take you to understand the components of the scroll bar and introduce how to use CSS to customize the scroll bar style.

Teach you step by step how to use CSS to customize beautiful scroll bar styles!

(Learning video sharing:css video tutorial)

Why do you need to customize scrolling? The browser's default scroll bars make the UI look inconsistent across multiple operating systems. Using defined scrolling we can unify the style.

I've always been interested in how to customize scrollbars in CSS, but never had the chance to do so. Today, I will record my learning process.

Teach you step by step how to use CSS to customize beautiful scroll bar styles!

Introduction

First of all, we need to introduce the components of the scroll bar. The scroll bar containstrackandthumb, as shown in the following figure:

Teach you step by step how to use CSS to customize beautiful scroll bar styles!

trackis the scroll bar Basics, wherethumbis the user dragging to support scrolling within the page or chapter.

Another important thing to rememberis that scroll bars can work horizontally or vertically, depending on the design. Also, this changes when working on a multilingual website that works in both left-to-right (LTR) and right-to-left (RTL) directions.

Teach you step by step how to use CSS to customize beautiful scroll bar styles!

Custom scroll bar design

Having a custom scroll bar used to be a webkit patent, so Firefox and IE were Excluded from the game. We have a new syntax, only used in Firefox, that will make our jobs easier when it is fully supported. Let's look at the old Webkit syntax first, and then introduce the new syntax.

1. Old syntax

Scroll bar width

First, we need to define the size of the scroll bar. This can be thewidthof a vertical scrollbar or theheightof a horizontal scrollbar.

.section::-webkit-scrollbar { width: 10px; }

With this setting, we can set the style of the scroll bar itself.

Scroll bar track

This represents the basis of the scroll bar. We can style it by addingbackground,shadows,border-radiusandborder.

.section::-webkit-scrollbar-track { background-color: darkgrey; }

Scroll bar thumb

After preparing the foundation of the scroll bar, we need to style thethumbof the scroll bar. This is important because the user may drag thisthumbto interact with the scrollbar.

.section::-webkit-scrollbar-thumb { box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); }

So far, we have introduced the old method of customizing scroll bars in CSS. Let's explore the new syntax.

2. New syntax

Scrollbar Width

As it says, this definition The width of the scroll bar has two values:autoandthin. The bad thing is that we can't define a specific number like webkit's syntax.

.section { scrollbar-width: thin; }

Scrollbar Color

With this property we can define pairs of values for the scrollbartrackandthumbs color.

.section { scrollbar-color: #6969dd #e0e0e0; scrollbar-width: thin; }

Although this new syntax is simple, it has limitations. We can only add color. We can't addshadows`,gradients,rounded, or anything like that, all we are allowed to customize is the color.

Specify the range of custom scroll bars

An important question to know is where to customize the scroll bar. Do you want the style to be universal and valid for all scrollbars on the site? Or do you want it to be used only for a specific section?

Using the old syntax we can write selectors without having to attach them to elements and they will apply to all scrollable elements.

::-webkit-scrollbar { width: 10px; } ::-webkit-scrollbar-track { background-color: darkgrey; } ::-webkit-scrollbar-thumb { box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); }

If you want to apply only to a specific section, you need to append the element before the selector.

.section::-webkit-scrollbar { width: 10px; } .section::-webkit-scrollbar-track { background-color: darkgrey; } .section::-webkit-scrollbar-thumb { box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); }

With the new syntax, it's almost the same. What I noticed is that if you want a universal style, it should be applied to theelement, not the.

html { scrollbar-color: #6969dd #e0e0e0; scrollbar-width: thin; }

I tried adding the above forbut it didn't work as expected.

Now that we know how the old and new syntax works, we can start customizing some scroll bar designs.

Custom scroll bar design

Example 1

Teach you step by step how to use CSS to customize beautiful scroll bar styles!

在研究定制滚动条之前,值得讨论一下Mac OS中的默认样式。下面是它的外观。

  • 滚动条track的左右两边都有边框,背景色为纯色。
  • 滚动条thumb是圆形的,左右两边都有空间。

对于Windows,它有点不同。

Teach you step by step how to use CSS to customize beautiful scroll bar styles!

下面是我们根据上面的模拟图来定制滚动条。

.section::-webkit-scrollbar { width: 16px; } .section::-webkit-scrollbar-track { background-color: #e4e4e4; border-radius: 100px; } .section::-webkit-scrollbar-thumb { background-color: #d4aa70; border-radius: 100px; }

trackthumb添加border-radius是必要的,因为它在::webkit-scrollbar上不起作用。

在新的语法中,我们不能调整滚动条的宽度,唯一能做的的是改变trackthumb的背景颜色。

.section { scrollbar-color: #D4AA70 #e4e4e4; }

例2

对于这个例子,设计有点重,因为它包含渐变和阴影。我们可以应用内部阴影和渐变来模仿这种效果。来看看怎么做!

Teach you step by step how to use CSS to customize beautiful scroll bar styles!

.section::-webkit-scrollbar-thumb { background-image: linear-gradient(180deg, #D0368A 0%, #708AD4 99%); box-shadow: inset 2px 2px 5px 0 rgba(#fff, 0.5); border-radius: 100px; }

示例地址:https://codepen.io/shadeed/pen/VwpOReG

例3

我们还可以为thumbtrack添加边框,这可以帮助我们处理一些棘手的设计。

Teach you step by step how to use CSS to customize beautiful scroll bar styles!

.section::-webkit-scrollbar-thumb { border-radius: 100px; background: #8070D4; border: 6px solid rgba(0,0,0,0.2); }

基于同样的例子,我们可以重置顶部和底部边界为零,这样thumb获得一个有趣的效果。注意thumb顶部和底部的那些小元素。

Teach you step by step how to use CSS to customize beautiful scroll bar styles!

示例地址:https://codepen.io/shadeed/pen/qBrGvOx

可以添加悬停效果吗?

我们可以为新旧语法的滚动条thumb添加悬停效果。

/* 旧语法 */ .section::-webkit-scrollbar-thumb:hover { background-color: #5749d2; } /* 新语法 */ .section { scrollbar-color: #d4aa70 #e4e4e4; transition: scrollbar-color 0.3s ease-out; } .section:hover { scrollbar-color: #5749d2; }

需要时显示滚动条

创建一个可滚动的元素是可以通过给overflow属性添加一个除visible以外的值。建议使用auto关键字,因为它只在内容超过其容器时才会显示滚动条。

Teach you step by step how to use CSS to customize beautiful scroll bar styles!

.section { overflow-y: auto; }

可访问性问题

在定制滚动条设计时,请记住在thumbtrack之间要有良好的对比,这样它就容易被用户注意。

考虑一下下面这个自定义滚动条的 "坏 "例子。

Teach you step by step how to use CSS to customize beautiful scroll bar styles!

thumb的颜色几乎看不出来。这对用户来说不是好事,因为如果他们习惯于通过thumb滚动,这将增加他们的难度。

英文原文地址:https://ishadeed.com/article/custom-scrollbars-css/

作者:ishadeed

更多编程相关知识,请访问:编程入门!!

The above is the detailed content of Teach you step by step how to use CSS to customize beautiful scroll bar styles!. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:segmentfault.com. If there is any infringement, please contact admin@php.cn delete