Hi,歡迎訪問前端老白
<label class="switch"> <input type="checkbox"> <span class="slider round"></span> </label>
/* 開關按鈕容器樣式 */ .switch { position: relative; display: inline-block; width: 60px; height: 34px; } /* 開關按鈕標準樣式 */ .switch input { opacity: 0; width: 0; height: 0; } /* 定義開關按鈕圓 */ .slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; transition: .4s; border-radius: 34px; } /* 圓鈕的樣式 */ .slider:before { position: absolute; content: ""; height: 26px; width: 26px; left: 4px; bottom: 4px; background-color: white; transition: .4s; border-radius: 50%; } /* 切換按鈕打開時圓鈕的樣式 */ input:checked + .slider { background-color: #2196F3; } /* 切換按鈕開啟時圓鈕的位置 */ input:checked + .slider:before { transform: translateX(26px); } /* 圓鈕陰影 */ .slider.round { border-radius: 34px; } .slider.round:before { border-radius: 50%; }
以下是我們的開關按鈕示例:
老白網絡 (http://52shenghuonet.cn/) 前端 后端 zblog主題.網站地圖xml