色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

css3做骰子

周雨萌1年前8瀏覽0評論

CSS3是前端開發(fā)中非常重要的一部分,它提供了豐富的樣式屬性,可以實(shí)現(xiàn)許多炫酷的效果。下面我們來介紹如何用CSS3來制作一個(gè)簡單的骰子。

.dice{
position: relative;
width: 80px;
height: 80px;
background-color: #fff;
border: 1px solid #ccc;
text-align: center;
font-size: 20px;
line-height: 80px;
cursor: pointer;
 }
.dice:before{
content: "";
position: absolute;
top: 10px;
left: 10px;
width: 60px;
height: 60px;
 }
.dice1:before{
background:url("dice-1.png") no-repeat center center;
 }
.dice2:before{
background:url("dice-2.png") no-repeat center center;
 }
.dice3:before{
background:url("dice-3.png") no-repeat center center;
 }
.dice4:before{
background:url("dice-4.png") no-repeat center center;
 }
.dice5:before{
background:url("dice-5.png") no-repeat center center;
 }
.dice6:before{
background:url("dice-6.png") no-repeat center center;
 }

首先我們需要一個(gè)骰子標(biāo)簽,設(shè)置寬度、高度、背景顏色、邊框等基本樣式。然后添加一個(gè)偽元素:before,來制作骰子上面的點(diǎn)數(shù)。使用background屬性設(shè)置圖片作為點(diǎn)數(shù)背景。

最后,我們?yōu)槊總€(gè)不同的圖案的點(diǎn)數(shù)制作一個(gè)類名,使用:hover來添加鼠標(biāo)懸停狀態(tài)樣式,提高用戶體驗(yàn)。這樣,我們就實(shí)現(xiàn)了一個(gè)簡單的骰子。