下面是一個簡單的 CSS 輪播示例:
```css
width: 100px;
height: 100px;
border: 1px solid #ccc;
display:輪播;
.輪播圖 {
display: none;
.輪播圖:nth-child(1) {
position: absolute;
top: 0;
left: 0;
width: 100px;
height: 100px;
background-color: #f00;
animation: spin 1s infinite;
.輪播圖:nth-child(2) {
position: absolute;
top: 0;
left: 200px;
width: 100px;
height: 100px;
background-color: #f00;
animation: spin 1s infinite;
.輪播圖:nth-child(3) {
position: absolute;
top: 0;
left: 200px;
width: 100px;
height: 100px;
background-color: #f00;
animation: spin 1s infinite;
@keyframes spin {
0% {
transform: rotate(0deg);
100% {
transform: rotate(360deg);
在這個示例中,我們使用了一個 `div` 元素來包含三個圖片,并使用 CSS 動畫來控制它們的顯示順序。首先,我們設置了第一個圖片的寬度和高度為 100 像素和 100 像素,并將其設置為絕對定位,使其在頁面中居中。然后,我們設置了第二個圖片的寬度和高度為 100 像素和 100 像素,并將其設置為絕對定位,使其在第二個位置。最后,我們設置了第三個圖片的寬度和高度為 100 像素和 100 像素,并將其設置為絕對定位,使其在第三個位置。
通過使用 `display:輪播` 屬性,我們可以控制每個圖片的顯示順序,從而實現圖片輪播的效果。我們還使用 CSS 動畫來模擬圖片的旋轉效果,使輪播更加生動有趣。