css实现衣服纽扣悬浮分裂按钮效果代码

代码语言:html

所属分类:悬停

代码描述:css实现衣服纽扣悬浮分裂按钮效果代码

代码标签: css 纽扣 悬浮 分裂 按钮

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

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">




    <style>
        @import url("https://fonts.googleapis.com/css2?family=Outfit&display=swap");
        
        :root {
          --fontSize: 50px;
          --button: 356, 80%;
          --buttonColor: hsl(var(--button), 70%);
          --sideColor: hsl(var(--button), 40%);
          --text: hsl(var(--button), 30%);
          --bgColor: #fae5d3;
        }
        body {
          position: absolute;
          display: flex;
          justify-content: center;
          align-items: center;
          inset: 0;
          width: 100vw;
          height: 100vh;
          top: 0;
          left: 0;
          background-color: var(--bgColor);
        }
        button {
          position: relative;
          font-size: 0;
          font-family: "Outfit", sans-serif;
          transition: all 300ms cubic-bezier(0.47, 1.64, 0.41, 0.8);
          border-radius: 999px;
          padding: calc(var(--fontSize) / 2);
          height: calc(var(--fontSize) * 2);
          min-width: calc(var(--fontSize) * 2);
          line-height: calc(var(--fontSize) * 0.75);
          border: none;
          outline: none;
          background-color: var(--buttonColor);
          transform: rotate(-25deg);
          color: var(--text);
          white-space: nowrap;
          cursor: pointer;
          -webkit-tap-highlight-color: transparent;
          box-.........完整代码请登录后点击上方下载按钮下载查看

网友评论0