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

純css3寫轉(zhuǎn)盤

最近,我學(xué)習(xí)了如何使用CSS3來(lái)實(shí)現(xiàn)一個(gè)有趣的功能,那就是轉(zhuǎn)盤。轉(zhuǎn)盤可以用在游戲中或者抽獎(jiǎng)系統(tǒng)中,讓用戶獲得一種特殊的體驗(yàn)。

/*創(chuàng)建轉(zhuǎn)盤*/
.circle {
position: relative;
width: 300px;
height: 300px;
border-radius: 50%;
background-color: #FDE574;
}
/*創(chuàng)建選項(xiàng)*/
.item {
position: absolute;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
transform-origin: 50% 300px;
}
/*設(shè)置選項(xiàng)的樣式*/
.item:nth-child(1) {
transform: rotate(0deg);
background-color: #FEAF52;
}
.item:nth-child(2) {
transform: rotate(45deg);
background-color: #FCDF81;
}
.item:nth-child(3) {
transform: rotate(90deg);
background-color: #FCF28A;
}
.item:nth-child(4) {
transform: rotate(135deg);
background-color: #9FE7A8;
}
.item:nth-child(5) {
transform: rotate(180deg);
background-color: #77B1D1;
}
.item:nth-child(6) {
transform: rotate(225deg);
background-color: #926EAE;
}
.item:nth-child(7) {
transform: rotate(270deg);
background-color: #F26D7D;
}
.item:nth-child(8) {
transform: rotate(315deg);
background-color: #7ACDD3;
}
/*創(chuàng)建中心點(diǎn)*/
.dot {
position: absolute;
top: 140px;
left: 140px;
width: 20px;
height: 20px;
border-radius: 50%;
background-color: #E74C3C;
}
/*設(shè)置轉(zhuǎn)盤移動(dòng)*/
.animation {
animation-name: spin;
animation-duration: 4s;
animation-timing-function: ease-out;
animation-delay: 0s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}
/*設(shè)置轉(zhuǎn)盤旋轉(zhuǎn)的關(guān)鍵幀*/
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(1800deg);
}
}

你可以按照這個(gè)代碼塊創(chuàng)建一個(gè)圓形的轉(zhuǎn)盤,其中每個(gè)選項(xiàng)都有不同的顏色和角度,并且轉(zhuǎn)盤可以以一個(gè)平滑的動(dòng)畫開始旋轉(zhuǎn)。你也可以在上面添加其他的特性,例如旋轉(zhuǎn)到特定的位置時(shí)顯示懸停效果、添加額外的選項(xiàng)等等。