css+div实现调皮的开关小球跳动动画效果代码

代码语言:html

所属分类:布局界面

代码描述:css+div实现调皮的开关小球跳动动画效果代码

代码标签: css div 调皮 开关 小球 跳动 动画

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="en" >

<head>
  <meta charset="UTF-8">
  

  
  
  
<style>
input {
  --s: 100px; /* control the size */
  --d: .7s; /* the transition duration */
  
  height: var(--s);
  border: calc(var(--s)/10) solid #0000;
  box-sizing: content-box;
  aspect-ratio: 2.2;
  border-radius: var(--s);
  background: #313b45;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: .3s;
  position: relative;
  transition: var(--d);
  outline-offset: 5px;
}
input:before {
  content:"";
  position: absolute;
  top: 0;
  left: 0;
  width: var(.........完整代码请登录后点击上方下载按钮下载查看

网友评论0