UNPKG

ym-mint-ui

Version:
77 lines (76 loc) 1.79 kB
/* Cell Component */ /* Header Component */ /* Button Component */ /* Tab Item Component */ /* Tabbar Component */ /* Navbar Component */ /* Checklist Component */ /* Radio Component */ /* Range Component */ /* z-index */ .mint-switch { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; position: relative; } .mint-switch * { pointer-events: none; } .mint-switch-label { margin-left: 20px; display: inline-block; } .mint-switch-label:empty { margin-left: 0; } .mint-switch-core { display: inline-block; position: relative; width: 104px; height: 64px; border: 1px solid #eee; border-radius: 16px; box-sizing: border-box; background: #eee; } .mint-switch-core::after, .mint-switch-core::before { content: " " !important; top: 0; left: 0; position: absolute; -webkit-transition: -webkit-transform .3s; transition: -webkit-transform .3s; transition: transform .3s; transition: transform .3s, -webkit-transform .3s; border-radius: 15px; } .mint-switch-core::after { width: 60px; height: 60px; background-color: #fff; box-shadow: 0 1px 6px rgba(0, 0, 0, .4); } .mint-switch-core::before { width: 100px; height: 60px; background-color: #fdfdfd; } .mint-switch-input { display: none; } .mint-switch-input:checked + .mint-switch-core { border-color: #24b1b2; background-color: #24b1b2; } .mint-switch-input:checked + .mint-switch-core::before { -webkit-transform: scale(0); transform: scale(0); } .mint-switch-input:checked + .mint-switch-core::after { -webkit-transform: translateX(40px); transform: translateX(40px); }