CSS 電子時鐘數字 ( 七段顯示器數字 )
這篇教學會運用兩種方法,分別是「裁切路徑 clip-path」和「虛擬元素 before 和 after」,製作常見的「電子時鐘數字」( 也可稱作七段顯示器數字,這種效果也可以呈現英文字母 )。
快速導覽:
裁切路徑 clip-path 製作電子時鐘數字
透過 CSS 的裁切路徑 clip-path
樣式屬性需要先了解電子時鐘的組成架構,參考下圖,如果元素的高度為 20px,左右三角形內縮的距離就是 10px,確定這個架構之後,不論使用何種方式製作,都可以輕鬆駕馭元素形狀。
下方範例會根據電子時鐘架構,將元素裁切出特定的形狀,這個形狀也是組合成電子時鐘的基本形狀。
<!-- HTML 程式碼 -->
<div class="num"><div></div></div>
<!-- CSS 程式碼 -->
<style>
.num {
position: relative;
margin: 20px;
}
.num div{
width: 100px;
height: 20px;
background: #c00;
clip-path: polygon(0 50%, 10px 0, 90px 0, 100% 50%, 90px 100%, 10px 100%); /* 裁切路徑 */
position: absolute;
}
</style>
修改 HTML 程式碼,在父元素 div
改成 num 屬性,如此一來只要指定數字就可以產生對應的數位數字,接著按照下方範例修改 CSS,範例中會先將七塊組成元素透過旋轉、定位的方式擺放在特定位置,並根據 num 屬性數字隱藏特定位置的元素,就能產生指定的數字 ( 尺寸可再自行調整,或透過 transform
改變 )。
參考:屬性選擇器
<!-- HTML 程式碼 -->
<div num="0"><div></div><div></div><div></div><div></div><div></div><div></div><div></div></div>
<div num="1"><div></div><div></div><div></div><div></div><div></div><div></div><div></div></div>
<div num="2"><div></div><div></div><div></div><div></div><div></div><div></div><div></div></div>
<div num="3"><div></div><div></div><div></div><div></div><div></div><div></div><div></div></div>
<div num="4"><div></div><div></div><div></div><div></div><div></div><div></div><div></div></div>
<div num="5"><div></div><div></div><div></div><div></div><div></div><div></div><div></div></div>
<div num="6"><div></div><div></div><div></div><div></div><div></div><div></div><div></div></div>
<div num="7"><div></div><div></div><div></div><div></div><div></div><div></div><div></div></div>
<div num="8"><div></div><div></div><div></div><div></div><div></div><div></div><div></div></div>
<div num="9"><div></div><div></div><div></div><div></div><div></div><div></div><div></div></div>
<!-- CSS 程式碼 -->
<style>
[num] {
position: relative;
margin: 20px;
width: 110px;
height: 210px;
float: left;
}
/* 數字主要的光棒 */
[num] div{
width: 100px;
height: 20px;
background: #000;
clip-path: polygon(0 50%, 10px 0, 90px 0, 100% 50%, 90px 100%, 10px 100%);
position: absolute;
}
/* 數字主要的光棒:上方 */
[num] div:nth-of-type(1){
top: 0;
left: 0;
}
/* 數字主要的光棒:左上 */
[num] div:nth-of-type(2){
transform: rotate(90deg);
top: 52px;
left: -50px;
}
/* 數字主要的光棒:右上 */
[num] div:nth-of-type(3){
transform: rotate(90deg);
top: 52px;
left: 50px;
}
/* 數字主要的光棒:中間 */
[num] div:nth-of-type(4){top: 104px;}
/* 數字主要的光棒:左下 */
[num] div:nth-of-type(5){
transform: rotate(90deg);
top: 156px;
left: -50px;
}
/* 數字主要的光棒:右下 */
[num] div:nth-of-type(6){
transform: rotate(90deg);
top: 156px;
left: 50px;
}
/* 數字主要的光棒:正下方 */
[num] div:nth-of-type(7){top: 208px;}
/* 數字 1 */
[num="1"] div:nth-of-type(1),
[num="1"] div:nth-of-type(2),
[num="1"] div:nth-of-type(4),
[num="1"] div:nth-of-type(5),
[num="1"] div:nth-of-type(7){
display:none;
}
/* 數字 2 */
[num="2"] div:nth-of-type(2),
[num="2"] div:nth-of-type(6){
display:none;
}
/* 數字 3 */
[num="3"] div:nth-of-type(2),
[num="3"] div:nth-of-type(5){
display:none;
}
/* 數字 4 */
[num="4"] div:nth-of-type(1),
[num="4"] div:nth-of-type(5),
[num="4"] div:nth-of-type(7){
display:none;
}
/* 數字 5 */
[num="5"] div:nth-of-type(3),
[num="5"] div:nth-of-type(5){
display:none;
}
/* 數字 6 */
[num="6"] div:nth-of-type(3){
display:none;
}
/* 數字 7 */
[num="7"] div:nth-of-type(2),
[num="7"] div:nth-of-type(4),
[num="7"] div:nth-of-type(5),
[num="7"] div:nth-of-type(7){
display:none;
}
/* 數字 9 */
[num="9"] div:nth-of-type(5){
display:none;
}
/* 數字 0 */
[num="0"] div:nth-of-type(4){
display:none;
}
</style>
虛擬元素 before 和 after 製作電子時鐘數字
除了使用裁切路徑的方式製作,也可以利用虛擬元素 ::before
和 ::after
產生寶石形狀左右的三角形,下圖展示虛擬元素製作三角形的原理,首先把虛擬元素的寬高都設為 0,接著只要設定四個邊框,並將不需要呈現的邊框設為透明色,就能產生漂亮的三角形。
<!-- HTML 程式碼 -->
<div class="num"><div></div></div>
<!-- CSS 程式碼 -->
<style>
.num {
position: relative; /* 提供子元素絕對定位 */
margin: 20px;
}
.num div {
width: 80px;
height: 20px;
background: #c00;
position: absolute; /* 元素絕對定位 */
}
.num div::before,
.num div::after{
content: "";
position: absolute; /* 虛擬元素絕對定位 */
width: 0; /* 虛擬元素尺寸為 0 */
height: 0;
top: 0;
border-width: 10px; /* 虛擬邊框寬度 */
border-style: solid; /* 虛擬邊框樣式 */
}
.num div::before {
border-color: #0000 #c00 #0000 #0000; /* 左側虛擬元素只有右邊邊框有顏色 */
left: -20px;
}
.num div::after {
border-color: #0000 #0000 #0000 #c00; /* 右側虛擬元素只有左邊邊框有顏色 */
right: -20px;
}
</style>
了解原理後,修改 HTML 程式碼,在父元素 div
改成 num 屬性,如此一來只要指定數字就可以產生對應的數位數字,接著按照下方範例修改 CSS,範例中會先將七塊組成元素透過旋轉、定位的方式擺放在特定位置,並根據 num 屬性數字隱藏特定位置的元素,就能產生指定的數字 ( 尺寸可再自行調整,或透過 transform
改變 )。
參考:屬性選擇器
<!-- HTML 程式碼 -->
<div num="0"><div></div><div></div><div></div><div></div><div></div><div></div><div></div></div>
<div num="1"><div></div><div></div><div></div><div></div><div></div><div></div><div></div></div>
<div num="2"><div></div><div></div><div></div><div></div><div></div><div></div><div></div></div>
<div num="3"><div></div><div></div><div></div><div></div><div></div><div></div><div></div></div>
<div num="4"><div></div><div></div><div></div><div></div><div></div><div></div><div></div></div>
<div num="5"><div></div><div></div><div></div><div></div><div></div><div></div><div></div></div>
<div num="6"><div></div><div></div><div></div><div></div><div></div><div></div><div></div></div>
<div num="7"><div></div><div></div><div></div><div></div><div></div><div></div><div></div></div>
<div num="8"><div></div><div></div><div></div><div></div><div></div><div></div><div></div></div>
<div num="9"><div></div><div></div><div></div><div></div><div></div><div></div><div></div></div>
<!-- CSS 程式碼 -->
<style>
[num] {
position: relative;
margin: 0;
width: 110px;
height: 210px;
float: left;
transform: scale(60%);
}
[num] div {
width: 80px;
height: 20px;
background: #000;
position: absolute;
}
[num] div::before,
[num] div::after{
content: "";
position: absolute;
width: 0;
height: 0;
top: 0;
border-width: 10px;
border-style: solid;
}
[num] div::before {
border-color: #0000 #000 #0000 #0000;
left: -20px;
}
[num] div::after {
border-color: #0000 #0000 #0000 #000;
right: -20px;
}
/* 數字主要的光棒:上方 */
[num] div:nth-of-type(1){
top: 0;
left: 0;
}
/* 數字主要的光棒:左上 */
[num] div:nth-of-type(2){
transform: rotate(90deg);
top: 52px;
left: -50px;
}
/* 數字主要的光棒:右上 */
[num] div:nth-of-type(3){
transform: rotate(90deg);
top: 52px;
left: 50px;
}
/* 數字主要的光棒:中間 */
[num] div:nth-of-type(4){top: 104px;}
/* 數字主要的光棒:左下 */
[num] div:nth-of-type(5){
transform: rotate(90deg);
top: 156px;
left: -50px;
}
/* 數字主要的光棒:右下 */
[num] div:nth-of-type(6){
transform: rotate(90deg);
top: 156px;
left: 50px;
}
/* 數字主要的光棒:正下方 */
[num] div:nth-of-type(7){top: 208px;}
/* 數字 1 */
[num="1"] div:nth-of-type(1),
[num="1"] div:nth-of-type(2),
[num="1"] div:nth-of-type(4),
[num="1"] div:nth-of-type(5),
[num="1"] div:nth-of-type(7){
display:none;
}
/* 數字 2 */
[num="2"] div:nth-of-type(2),
[num="2"] div:nth-of-type(6){
display:none;
}
/* 數字 3 */
[num="3"] div:nth-of-type(2),
[num="3"] div:nth-of-type(5){
display:none;
}
/* 數字 4 */
[num="4"] div:nth-of-type(1),
[num="4"] div:nth-of-type(5),
[num="4"] div:nth-of-type(7){
display:none;
}
/* 數字 5 */
[num="5"] div:nth-of-type(3),
[num="5"] div:nth-of-type(5){
display:none;
}
/* 數字 6 */
[num="6"] div:nth-of-type(3){
display:none;
}
/* 數字 7 */
[num="7"] div:nth-of-type(2),
[num="7"] div:nth-of-type(4),
[num="7"] div:nth-of-type(5),
[num="7"] div:nth-of-type(7){
display:none;
}
/* 數字 9 */
[num="9"] div:nth-of-type(5){
display:none;
}
/* 數字 0 */
[num="0"] div:nth-of-type(4){
display:none;
}
</style>
小結
透過「裁切路徑 clip-path」和「虛擬元素 before 和 after」製作電子時鐘都是常見的做法,搭配 CSS 的屬性選擇器也讓程式更加彈性好修改。
意見回饋
如果有任何建議或問題,可傳送「意見表單」給我,謝謝~