Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[button]kizin #40

Open
ZiYi0414 opened this issue Dec 27, 2023 · 0 comments
Open

[button]kizin #40

ZiYi0414 opened this issue Dec 27, 2023 · 0 comments
Labels
Button Button 按钮 component dark dark theme

Comments

@ZiYi0414
Copy link
Owner


title: kizin
made_by: kizin
theme: dark

button {
  text-decoration: none;
  position: relative;
  border: none;
  font-size: 14px;
  font-family: inherit;
  color: #fff;
  width: 9em;
  height: 3em;
  line-height: 2em;
  text-align: center;
  background: linear-gradient(90deg, #03a9f4, #f441a5, #ffeb3b, #03a9f4);
  background-size: 300%;
  border-radius: 30px;
  z-index: 1;
}

button:hover {
  animation: ani 8s linear infinite;
  border: none;
}

@keyframes ani {
  0% {
    background-position: 0%;
  }

  100% {
    background-position: 400%;
  }
}

button:before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  z-index: -1;
  background: linear-gradient(90deg, #03a9f4, #f441a5, #ffeb3b, #03a9f4);
  background-size: 400%;
  border-radius: 35px;
  transition: 1s;
}

button:hover::before {
  filter: blur(20px);
}

button:active {
  background: linear-gradient(32deg, #03a9f4, #f441a5, #ffeb3b, #03a9f4);
}
<button>HOVER ME</button>
@ZiYi0414 ZiYi0414 added component dark dark theme labels Dec 27, 2023
@ZiYi0414 ZiYi0414 changed the title kizin [button]kizin Dec 27, 2023
@ZiYi0414 ZiYi0414 added the Button Button 按钮 label Dec 27, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Button Button 按钮 component dark dark theme
Projects
None yet
Development

No branches or pull requests

1 participant