gsap实现按钮提交捐钱动画效果

代码语言:html

所属分类:表单美化

代码描述:gsap实现按钮提交捐钱动画效果

代码标签: 提交 捐钱 动画 效果

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

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

<style>
button {
  border: 0;
  padding: 0;
  color: #000;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: transparent;
  box-shadow: 10px 10px rgba(0, 0, 0, 0.1);
  transition: 0.1s box-shadow ease-in;
}
button svg {
  background: #3f3e3c;
  width: 50px;
  height: 40px;
  padding: 10px;
  transition: 0.4s;
}
button div.wrapper {
  padding: 0 25px 0 10px;
  height: 60px;
  overflow: hidden;
  background: #f5f5f5;
}
button div.wrapper .slider {
  transform: translate3d(0, 0, 0);
}
button div.wrapper .slider span {
  color: #010101;
  display: block;
  line-height: 60px;
}
.dropped {
  box-shadow: 6px 6px rgba(0, 0, 0, 0.1);
}
a {
  font-weight: bold;
  color: #386981;
  position: absolute;
  font-size: 12px;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
}
html {
  width: 100%;
  height: 100%;
}
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: grid;
  place-items: center;
  background: #ffc5c4;
  overflow: hidden;
  font-family: sans-serif;
}
</style>

</head>
<body translate="no">
<button id="donation-btn">
<svg viewBox="0 0 512 512">
<g id="hand">
<g fill="#5adecb">
<path d="M47.1,302h-32c-8.3,0-15,6.7-15,15v180c0,8.3,6.7,15,15,15h32c24.8,0,45-20.2,45-45V347
                      C92.1,322.2,71.9,302,47.1,302z" />
</g>
<g fill="#fefefe">
<path d="M507.6,331.1c-1.8-3-4.2-5.4-6.9-7.5c-11-9.7-29.7-8.7-40.5,3l-68.1,78.6l-2.1,2.4
                      c-8.4,9.3-20.4,14.4-33,14.4H240.6c-8.4,0-15-6.6-15-15c0-8.4,6.6-15,15-15h91.5c16.5,0,30-13.5,30-30v-0.3
                      c-0.3-16.5-13.5-29.7-30-29.7h-54.3c-9,0-18.6-3.3-26.4-9.9c-36.6-32.1-90-34.2-129.3-6.9v184.5c29.7,8.1,60.3,12.3,91.2,12.3
                      h133.8c33,0,64.2-15.6,84-42l72-96C513.6,360.2,514.4,341.3,507.6,331.1z" />
</g>
</g>
<g id="icon-wrapper">
<g id="heart">
<circle cx="267.9" cy="139.1" r="123.9" fill="#3e3d3e" />
<g id="heart-icon" fill="#fbbabc">
<path d="M350,76.3c-9.8-11-23.4-17.1-38.2-17.1c-16.6,0-31,7.8-41.6,22.7c-0.8,1.1-1.5,2.2-2.2,3.3
                c-0.7-1.1-1.4-2.2-2.2-3.3c-10.6-14.8-25-22.7-41.6-22.7c-14.9,0-28.4,6.1-38.2,17.1c-9.3,10.4-14.4,24.4-14.4,39.3
                c0,16.2,6.3,31.2,19.8,47.1c11.8,13.9,28.7,28.1,48.2,44.7c7.2,6.1,14.7,12.4,22.7,19.3c1.7,1.4,3.7,2.2,5.8,2.2
                c2.1,0,4.1-0.7,5.8-2.2c7.9-6.9,15.4-13.2,22.7-19.3c12.6-10.6,23.4-19.8,32.8-28.7c18.3-17.3,35.2-36.8,35.2-63.1
                C364.4,100.7,359.3,86.7,350,76.3z" />
<rect x="171.6" y="228" width="193" height="169.5" clip-path=&qu.........完整代码请登录后点击上方下载按钮下载查看

网友评论0