問題:
如何將多個影像對齊成一個圓圈,同時保持其可點擊性功能?
答案:
2024 解決方案:
此解決方案提供了更現代的方法:
原始解決方案:
在包裝器中定位每個影像:
定義具有所需旋轉角度的類別並應用變換鏈:
HTML 與 CSS 程式碼片段:
<div class="circle-container"> <a href="#" class="center"></a> <a href="#" class="deg0"></a> <a href="#" class="deg45"></a> <a href="#" class="deg135"></a> <a href="#" class="deg180"></a> <a href="#" class="deg225"></a> <a href="#" class="deg315"></a> </div>
.circle-container { width: 24em; height: 24em; position: relative; } .circle-container a { position: absolute; top: 50%; left: 50%; width: 4em; height: 4em; margin: -2em; } .deg0 { transform: translate(12em); } .deg45 { transform: rotate(45deg) translate(12em) rotate(-45deg); }
以上是如何將可點擊的圖像排列成圓形?的詳細內容。更多資訊請關注PHP中文網其他相關文章!