css实现导航切换效果

代码语言:html

所属分类:菜单导航

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


<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">

<style>
.tabs {
  --background: #FFFFFF;
  --light-grey: #C6CFD9;
  --wave-color: #2AC8DD;
  --width: 300px;
  --height: 75px;
  --border-radius: var(--height);
  background: var(--background);
  width: var(--width);
  height: var(--height);
  padding: 0;
  position: relative;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(65, 72, 86, 0.05);
  display: -webkit-box;
  display: flex;
  justify-content: space-around;
  -webkit-box-align: center;
          align-items: center;
  padding: 0 15px;
  box-sizing: border-box;
  overflow: hidden;
}
.tabs label {
  width: 26px;
  height: 26px;
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: flex;
  justify-content: space-around;
  -webkit-box-align: center;
          align-items: center;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}
.tabs label::before {
  content: "";
  height: 4px;
  width: 4px;
  border-radius: 0% 100% 50% 50% / 0% 50% 50% 100%;
  -webkit-transform: scale(1, 1) rotate(45deg);
          transform: scale(1, 1) rotate(45deg);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  background: var(--wave-color);
  display: block;
  position: absolute;
  top: -30px;
}
.tabs label svg {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.tabs label svg .icon {
  fill: none;
  stroke: var(--light-grey);
  stroke-dashoffset: 98;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
  -webkit-transition: stroke .15s linear .3s;
  transition: stroke .15s linear .3s;
}
.tabs label .wave {
  hei.........完整代码请登录后点击上方下载按钮下载查看

网友评论0