CSS3抽獎特效是一種通過CSS3技術,實現在網站中添加抽獎功能的效果。這種特效使用了CSS3的一些新屬性,如tranform、animation等來實現
/* 定義一個基礎動畫類 */ @keyframes lottery-rotate { 0% { transform: rotate(0); } 100% { transform: rotate(360deg); } } /* 抽獎按鈕的樣式 */ .lottery-button { width: 100px; height: 40px; line-height: 40px; text-align: center; background-color: #F00; color: #FFF; border-radius: 10px; cursor: pointer; animation: lottery-rotate 3s infinite linear; } /* 抽中獎項時的動畫效果 */ .winning-item { animation: lottery-rotate 3s infinite linear; }
以上代碼定義了一個基礎動畫類lottery-rotate,以及抽獎按鈕的樣式lottery-button和抽中獎項時的動畫效果winning-item。使用時,只需要將按鈕的類設置為lottery-button,以及抽中獎項的元素設置為winning-item即可實現抽獎特效