CSS日期時(shí)間類特效提供了各種美麗的選擇,讓您的網(wǎng)站更加生動(dòng)。以下是一些常見(jiàn)的特效。
/* 顯示當(dāng)前日期 */ .date { font-size: 24px; color: #333; } .date:before { content: "今天是:"; font-weight: bold; } /* 顯示倒計(jì)時(shí) */ .timer { font-size: 32px; color: #FF0000; } .timer:before { content: "距離活動(dòng)結(jié)束還有:"; font-weight: bold; } /* 顯示鐘表 */ .clock { width: 200px; height: 200px; border-radius: 50%; border: 2px solid #333; position: relative; margin: 0 auto; } .clock:after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 6px; height: 6px; border-radius: 50%; background-color: #333; } .clock div { position: absolute; width: 6px; height: 60%; background-color: #333; transform-origin: bottom center; left: calc(50% - 3px); top: 20%; } .clock div:nth-child(1) { transform: rotate(30deg); } .clock div:nth-child(2) { transform: rotate(60deg); } .clock div:nth-child(3) { transform: rotate(90deg); } /* 還有更多特效等待您的發(fā)現(xiàn)! */
這些特效都可以輕松地添加到您的網(wǎng)站上,并提高用戶體驗(yàn)。