gsap点赞收藏按钮点击动画效果

代码语言:html

所属分类:表单美化

代码描述:gsap点赞收藏按钮点击动画效果

代码标签: 按钮 点击 动画 效果

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


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

<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Inter:400,500,600,700&amp;display=swap'>
<style>
.button {
  --color: #1E2235;
  --color-hover: #1E2235;
  --color-active: #fff;
  --icon: #BBC1E1;
  --icon-hover: #8A91B4;
  --icon-active: #fff;
  --background: #fff;
  --background-hover: #fff;
  --background-active: #362A89;
  --border: #E1E6F9;
  --border-active: #362A89;
  --shadow: rgba(0, 17, 119, 0.025);
  display: block;
  outline: none;
  cursor: pointer;
  position: relative;
  border: 0;
  background: none;
  padding: 8px 20px 8px 24px;
  border-radius: 9px;
  line-height: 27px;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  color: var(--color);
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: color .2s linear;
  transition: color .2s linear;
}
.button.dark {
  --color: #F6F8FF;
  --color-hover: #F6F8FF;
  --color-active: #fff;
  --icon: #8A91B4;
  --icon-hover: #BBC1E1;
  --icon-active: #fff;
  --background: #1E2235;
  --background-hover: #171827;
  --background-active: #275EFE;
  --border: transparent;
  --border-active: transparent;
  --shadow: rgba(0, 17, 119, 0.16);
}
.button:hover {
  --icon: var(--icon-hover);
  --color: var(--color-hover);
  --background: var(--background-hover);
  --border-width: 2px;
}
.button:active {
  --scale: .95;
}
.button:not(.liked):hover {
  --hand-rotate: 8;
  --hand-thumb-1: -12deg;
  -.........完整代码请登录后点击上方下载按钮下载查看

网友评论0