html - 如何在不使用变换的情况下更改CSS切换开关的大小: scale?

标签 html css wordpress elementor

我正在为一个名为 elementor 的插件设计一个元素。这个元素实际上只是为了帮助我学习 WordPress 开发的功能。

我正在制作一个“切换内容” slider ,可以在文本或预定义的 html 之间切换。我根据本指南使用了 slider :https://www.w3schools.com/howto/howto_css_switch.asp

开关旁边有两个标题,如下所示:

我想使用 elementors php 工具通过 css 实时调整 slider 大小。 transform:scale() 工作正常,它只是不移动其他任何东西,并且是一种非常粗略的方法。有没有其他方法可以缩放此元素并随之移动边距?我见过另一个插件通过更改“字体大小”来执行类似的操作。这似乎对我不起作用。

.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;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

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);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>

</style>
</head>
<body>

<h2>Toggle Switch</h2>

<label class="switch">
  <input type="checkbox" checked>
  <span class="slider round"></span>
</label>

</body>
</html> 

最佳答案

这可以通过将构成开关尺寸的所有静态值从 px 更改为 em 来实现。

通过使用此方法,您可以使用 font-size 属性来更改元素的大小。这将产生所需的大小调整效果,同时也会影响文档布局。

.switch {
  position: relative;
  display: inline-block;
  width: 3.75em;
  height: 2.125em;
}

.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: "";
  height: 1.625em;
  width: 1.625em;
  left: 0.25em;
  bottom: 0.25em;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(1.625em);
  -ms-transform: translateX(1.625em);
  transform: translateX(1.625em);
}

/* Rounded sliders */
.slider.round {
  border-radius: 2.125em;
}

.slider.round:before {
  border-radius: 50%;
}
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>

</style>
</head>
<body>

<h2>Toggle Switch</h2>

<label class="switch">
  <input type="checkbox" checked>
  <span class="slider round"></span>
</label>

<label class="switch" style="font-size: 2rem">
  <input type="checkbox" checked>
  <span class="slider round"></span>
</label>

</body>
</html>

关于html - 如何在不使用变换的情况下更改CSS切换开关的大小: scale?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60011164/

相关文章:

php - 添加 Hook 以删除 woocommerce 购物车中的项目

mysql - 为什么限制 0,1 比限制 0、17 慢

javascript - 使用 Bootstrap 如何使用关闭按钮显示输入中的 div 列表中选定的 div

html - 图标不适合一行 - CSS

html - 获取输入值并将其插入 *ngFor 指令?

html - 电话媒体查询

jquery - 在选定的菜单项上添加类

php - 获取 WooCommerce 产品属性标签名称

javascript - JQuery 和 Cookie : How to remove them when user leaves the page or exit window/tab

Javascript好像没有被调用