我想构建一个自定义的拨动开关,该开关具有类似pin而不是圆形的Google地图。
因此,我做了以下事情:
HTML
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<h2>Toggle Switch</h2>
<label class="switch">
<input type="checkbox">
<span class="slider"></span>
</label>
</body>
</html>
CSS
.switch {
position: relative;
display: inline-block;
width: 60px;
height: 40px;
}
.switch input {
opacity: 0;
width: 0;
height: 0;
}
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
-webkit-transition: .4s;
transition: .4s;
}
.slider:before {
position: absolute;
content: "";
left: 4px;
bottom: 10px;
background-color: white;
-webkit-transition: .4s;
transition: .4s;
width: 20px;
height: 20px;
border-radius: 0 50% 50% 50%;
border: 3px solid black;
transform: rotate(225deg);
margin-top: 20px;
}
input:checked + .slider {
background-color: #2196F3;
}
input:focus + .slider {
box-shadow: 0 0 1px #2196F3;
}
input:checked + .slider:before {
-webkit-transform: translateX(26px);
-ms-transform: translateX(26px);
transform: translateX(26px);
}
这几乎是我想要做的。但是我需要旋转销,直到“箭头”再次指向底部。这样一整圈。
有什么可能吗?
您可以在这里找到我的代码: https://codepen.io/lsgit/pen/GRRbrQq
谢谢。
答案 0 :(得分:0)
更新这些样式
.slider:before {
transform: translate(0px) rotate(-132deg);
}
input:checked + .slider:before {
transform: translate(25px) rotate(223deg);
}
自己使用-web-kits
和-ms
谢谢