CSS幻燈片樣式是Web設計中的重要部分,它可以增加網站的吸引力和用戶體驗。下面我們來了解一些常用的CSS幻燈片樣式。
/* 幻燈片容器樣式 */ .slideshow-container { max-width: 1000px; position: relative; } /* 幻燈片圖片設置 */ .mySlides { display: none; width: 100%; height: auto; position: absolute; top: 0; left: 0; opacity: 0.8; transition: opacity .8s ease-in-out; } /* 切換按鈕樣式 */ .prev, .next { cursor: pointer; position: absolute; top: 50%; width: auto; margin-top: -22px; padding: 16px; color: white; font-weight: bold; font-size: 20px; transition: 0.6s ease; border-radius: 0 3px 3px 0; } .next { right: 0; border-radius: 3px 0 0 3px; } /* 按鈕懸停效果 */ .prev:hover, .next:hover { background-color: rgba(0,0,0,0.8); } /* 圖片標題樣式 */ .text { color: #f2f2f2; font-size: 15px; padding: 8px 12px; position: absolute; bottom: 8px; width: 100%; text-align: center; background-color: rgba(0,0,0,0.8); } /* 圖片動畫 */ .fade { opacity: 1; } /* 圓點指示器樣式 */ .dot-container { text-align: center; padding: 20px; background-color: #f1f1f1; } .dot { cursor: pointer; height: 15px; width: 15px; margin: 0 2px; background-color: #bbb; border-radius: 50%; display: inline-block; transition: background-color 0.6s ease; } .active, .dot:hover { background-color: #717171; }
通過這些CSS樣式,我們可以輕松創建出一個漂亮的幻燈片效果,給用戶帶來更好的視覺體驗。
下一篇css常用英語單詞