Ionic:自定义切换按钮。

Ionic: customize toggle button.

我现在正在开发离子应用程序。请问我可以自定义ionic button 如下图吗?

当用户在按钮上滑动时。会变成这样

你可以尝试修改 ionic.css

This is the snippet code for the ionic.css

/**
 * Toggle
 * --------------------------------------------------
 */
.item-toggle {
  pointer-events: none; }

.toggle {
  position: relative;
  display: inline-block;
  pointer-events: auto;
  margin: -5px;
  padding: 5px; }
  .toggle input:checked + .track {
    border-color: #4cd964;
    background-color: #4cd964; }
  .toggle.dragging .handle {
    background-color: #f2f2f2 !important; }
...
...
...