购物车按钮

这篇具有很好参考价值的文章主要介绍了购物车按钮。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

先看效果:
购物车按钮
再看代码:文章来源地址https://www.toymoban.com/news/detail-477070.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>购物车按钮展示</title>
  <link href="https://fonts.googleapis.com/css?family=Inter:400,500,600,700&amp;display=swap" type="text/css" rel="stylesheet">
  <script src="https://unpkg.co/gsap@3/dist/gsap.min.js"></script>
  <script src="https://assets.codepen.io/16327/Physics2DPlugin3.min.js"></script>
  <script src="https://assets.codepen.io/16327/MorphSVGPlugin3.min.js"></script>

  <style>
    .add-to-cart {
      --color: #000;
      --background: #fff;
      --drop: #38E739;
      --background-s: 1;
      --text-o: 1;
      --text-x: 10px;
      --bottle-x: -40%;
      --bottle-y: -60px;
      --bottle-s: .4;
      --bottle-r: 0deg;
      --bottle-o: 0;
      --cart-x: -57px;
      --cart-y: -2px;
      --cart-r: 0deg;
      --cart-s: 0.8;
      --check-y: 0px;
      --check-s: 0;
      --check-offset: 8.5px;
      -webkit-tap-highlight-color: transparent;
      -webkit-appearance: none;
      outline: none;
      background: none;
      border: none;
      padding: 12px 0;
      margin: 0;
      width: 142px;
      color: var(--color);
      cursor: pointer;
      position: relative;
      text-align: center;
      font: inherit;
    }
    .add-to-cart.clipped {
      -webkit-clip-path: polygon(0 -80px, 100% -80px, 100% 80px, 0 80px);
      clip-path: polygon(0 -80px, 100% -80px, 100% 80px, 0 80px);
    }
    .add-to-cart .background,
    .add-to-cart .cart,
    .add-to-cart .check {
      position: absolute;
      pointer-events: none;
    }
    .add-to-cart .background {
      left: 0;
      top: -4px;
      right: 0;
      bottom: 0;
      display: block;
      fill: var(--background);
      transform: scale(var(--background-s)) translateZ(0);
    }
    .add-to-cart span {
      position: relative;
      z-index: 1;
      line-height: 18px;
      display: block;
      font-size: 14px;
      font-weight: 500;
      opacity: var(--text-o);
      transform: translateX(var(--text-x)) translateZ(0);
    }
    .add-to-cart .drop {
      position: absolute;
      z-index: 1;
      left: 70px;
      top: 8px;
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--drop);
    }
    .add-to-cart .cart {
      z-index: 2;
      bottom: 11px;
      left: calc(50% - 2px);
      transform-origin: 10px 17px;
      transform: translate(var(--cart-x), var(--cart-y)) scale(var(--cart-s)) rotate(var(--cart-r)) translateZ(0);
    }
    .add-to-cart .cart svg {
      display: block;
      width: 24px;
      height: 19px;
      stroke: var(--color);
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
      position: relative;
      z-index: 1;
      transform: translateZ(0);
    }
    .add-to-cart .cart img {
      display: block;
      position: absolute;
      bottom: 7px;
      left: 50%;
      opacity: var(--bottle-o);
      transform-origin: 50% 100%;
      transform: translate(var(--bottle-x), var(--bottle-y)) scale(var(--bottle-s)) rotate(var(--bottle-r)) translateZ(0);
    }
    .add-to-cart .check {
      bottom: 0;
      left: 50%;
      padding: 2px;
      background: var(--background);
      border-radius: 50%;
      transform: translate(-50%, var(--check-y)) scale(var(--check-s)) translateZ(0);
    }
    .add-to-cart .check svg {
      display: block;
      width: 10px;
      height: 10px;
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke: var(--color);
      stroke-dasharray: 8.5px;
      stroke-dashoffset: var(--check-offset);
    }

    html {
      box-sizing: border-box;
      -webkit-font-smoothing: antialiased;
    }

    * {
      box-sizing: inherit;
    }
    *:before, *:after {
      box-sizing: inherit;
    }

    body {
      min-height: 100vh;
      display: flex;
      font-family: "Inter", Arial;
      justify-content: center;
      align-items: center;
      background: #000;
    }
    body .dribbble {
      position: fixed;
      display: block;
      right: 20px;
      bottom: 20px;
    }
    body .dribbble img {
      display: block;
      height: 28px;
    }
    body .twitter {
      position: fixed;
      display: block;
      right: 64px;
      bottom: 14px;
    }
    body .twitter svg {
      width: 32px;
      height: 32px;
      fill: #1da1f2;
    }
  </style>
</head>
<body>
<button class="add-to-cart">
  <div class="cart">
    <svg viewBox="0 0 24 19">
      <path d="M11.25 17C11.25 17.6904 10.6904 18.25 10 18.25C9.30964 18.25 8.75 17.6904 8.75 17C8.75 16.3096 9.30964 15.75 10 15.75C10.6904 15.75 11.25 16.3096 11.25 17Z" stroke-width="1.5 "/>
      <path d="M19.25 17C19.25 17.6904 18.6904 18.25 18 18.25C17.3096 18.25 16.75 17.6904 16.75 17C16.75 16.3096 17.3096 15.75 18 15.75C18.6904 15.75 19.25 16.3096 19.25 17Z" stroke-width="1.5 "/>
      <path d="M1 1H5L5.91304 4M5.91304 4L8.06853 11.0823C8.32483 11.9245 9.10161 12.5 9.98188 12.5H18.585C19.4329 12.5 20.1887 11.9653 20.471 11.1656L23 4H5.91304Z" stroke-width="2" />
    </svg>
    <img srcset="https://assets.codepen.io/165585/alge.png 1x, https://assets.codepen.io/165585/alge@2x.png 2x" />
  </div>
  <span>Add to cart</span>
  <div class="check">
    <svg viewBox="0 0 10 10">
      <path d="M2 5L4 7L8 3" />
    </svg>
  </div>
  <svg class="background" viewBox="0 0 142 46">
    <path d="M0 19C0 10.7157 6.71573 4 15 4H41.4599C53.6032 4 62.4844 4 72.5547 4C82.6251 4 91.5063 4 103.65 4H137C139.761 4 142 6.23858 142 9V31C142 39.2843 135.284 46 127 46H5C2.23858 46 0 43.7614 0 41V19Z" />
  </svg>
</button>


<a class="dribbble" href="https://dribbble.com/ai" target="_blank"><img src="https://cdn.dribbble.com/assets/dribbble-ball-mark-2bd45f09c2fb58dbbfb44766d5d1d07c5a12972d602ef8b32204d28fa3dda554.svg" alt=""></a>
</body>

<script>
  const { to, registerPlugin, set, timeline } = gsap

  gsap.registerPlugin(MorphSVGPlugin, Physics2DPlugin)

  document.querySelectorAll('.add-to-cart').forEach(button => {
    let background = button.querySelector('.background path')
    button.addEventListener('pointerdown', e => {
      if(button.classList.contains('active')) {
        return
      }
      to(button, {
        '--background-s': .97,
        duration: .1
      })
    })
    button.addEventListener('click', e => {
      e.preventDefault()
      if(button.classList.contains('active')) {
        return
      }
      button.classList.add('active')
      to(button, {
        keyframes: [{
          '--background-s': .97,
          duration: .1
        }, {
          '--background-s': 1,
          delay: .1,
          duration: .8,
          ease: 'elastic.out(1, .6)'
        }]
      })
      to(button, {
        '--text-x': '16px',
        '--text-o': 0,
        duration: .2
      })
      to(button, {
        keyframes: [{
          '--cart-x': '-12px',
          '--cart-s': 1,
          duration: .25
        }, {
          '--bottle-s': 1,
          '--bottle-o': 1,
          duration: .15,
          onStart() {
            to(button, {
              duration: .4,
              keyframes: [{
                '--bottle-r': '-8deg'
              }, {
                '--bottle-r': '8deg'
              }, {
                '--bottle-r': '0deg'
              }]
            })
          }
        }, {
          '--bottle-y': '0px',
          duration: .3,
          delay: .15,
          onStart() {
            to(background, {
              keyframes: [{
                morphSVG: 'M0 19C0 10.7157 6.71573 4 15 4H41.4599C53.6032 4 62.4844 12 72.5547 12C82.6251 12 91.5063 4 103.65 4H137C139.761 4 142 6.23858 142 9V31C142 39.2843 135.284 46 127 46H5C2.23858 46 0 43.7614 0 41V19Z',
                duration: .1,
                delay: .18
              }, {
                morphSVG: 'M0 19C0 10.7157 6.71573 4 15 4H41.4599C53.6032 4 62.4844 4 72.5547 4C82.6251 4 91.5063 4 103.65 4H137C139.761 4 142 6.23858 142 9V31C142 39.2843 135.284 46 127 46H5C2.23858 46 0 43.7614 0 41V19Z',
                duration: .8,
                ease: 'elastic.out(1, .6)'
              }]
            })
            to(button, {
              '--bottle-s': .5,
              duration: .15
            })
          }
        }, {
          '--cart-y': '3px',
          duration: .1,
          onStart() {
            to(button, {
              keyframes: [{
                '--check-y': '24px',
                '--check-s': 1,
                duration: .25
              }, {
                '--check-offset': '0px',
                duration: .25
              }]
            })
          }
        }, {
          '--cart-y': '0px',
          duration: .2
        }, {
          '--cart-x': '-6px',
          '--bottle-r': '12deg',
          '--bottle-x': '-25%',
          duration: .15
        }, {
          '--cart-x': '-16px',
          '--bottle-r': '-12deg',
          '--bottle-x': '-50%',
          duration: .2,
          onStart() {
            drops(button, 5, -130, -100);
          },
        }, {
          '--cart-x': '92px',
          '--cart-r': '-20deg',
          duration: .4,
          onStart() {
            button.classList.add('clipped')
          },
          onComplete() {
            set(button, {
              '--cart-x': '-120px',
              '--cart-s': .8,
              '--cart-y': '-2px',
              '--bottle-o': 0,
              '--text-x': '2px'
            })
          }
        }, {
          '--cart-x': '-57px',
          '--cart-r': '0deg',
          '--check-s': 0,
          duration: .3,
          delay: .1,
          clearProps: true,
          onStart() {
            to(button, {
              '--text-x': '10px',
              '--text-o': 1,
              duration: .2,
              delay: .1
            })
          },
          onComplete() {
            button.classList.remove('active', 'clipped')
          }
        }]
      })
    })
  })

  function drops(parent, quantity, minAngle, maxAngle) {
    for(let i = quantity - 1; i >= 0; i--) {
      let angle = gsap.utils.random(minAngle, maxAngle),
              velocity = gsap.utils.random(60, 80)

      let div = document.createElement('div')
      div.classList.add('drop')

      parent.appendChild(div);

      set(div, {
        opacity: 1,
        scale: 0,
      });
      timeline({
        onComplete() {
          div.remove();
        }
      }).to(div, {
        duration: .4,
        scale: gsap.utils.random(.5, .7)
      }, 0).to(div, {
        duration: 1,
        physics2D: {
          angle: angle,
          velocity: velocity,
          gravity: 80
        }
      }, 0).to(div, {
        duration: .3,
        opacity: 0
      }, .3);
    }
  }

</script>
</html>

到了这里,关于购物车按钮的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • Vue项目商品购物车前端本地缓存逻辑(适用H5/ipad/PC端)——前端实现购物车删除商品、购物车增减数量,清空购物车功能

    Vue3 + Vite + Ts开源后台管理系统模板 基于ElementUi或AntdUI再次封装基础组件文档 基于Element-plus再次封装基础组件文档(vue3+ts)

    2024年02月12日
    浏览(47)
  • 【javaweb+springboot】旅游网页面设计(主购物车功能)——前后端分离+服务端客户端增删改查(完整代码+文档)

    一、项目背景 由于疫情原因,张家界旅游业受到很大的影响,为了促进旅游业的发展,吸引更多游客来到张家界旅游,帮助游客更好地了解张家界,创建张家界旅游网,推进旅游发展大会的开展,展示当地风土人情。景区推荐和酒店预定使得游客出行更加的方便,通过游客留

    2024年02月09日
    浏览(40)
  • Android商城开发----点击加入购物车,购物车商品的增删减

    上一章节:【分类页面】点击左侧类别,实现右侧对应类别商品的展示 本文是在上一章节基础上开发的,点击【分类】页面商品的加入购物车按钮,实现将商品加入购物车的功能。 本文主要实现的功能是: 1.点击加入购物车按钮,将商品加入购物车。 2.点击相同的商品加入

    2024年02月03日
    浏览(60)
  • JavaWeb购物系统(五)购物车模块的实现

    未添加商品效果图 添加商品之后的效果图 添加商品 购物车中商品的数量增加、减少、通过键盘输入改变数量 清空购物车 计算购物车商品的总价格 我们的购物车采用的是在服务端,即:使用session来存储。这样做的 缺点 :无法永久存储,当服务端关闭的时候,会销毁。 优点

    2024年02月07日
    浏览(44)
  • JavaWeb购物系统(六)购物车订单模块的实现

    有订单时的效果图 无订单时的效果图 订单详情页 生成订单 订单页的展示 查看订单详情 和购物车同样的,首先得知道我们的订单对应的哪个实体对象。一个用户可能有多条订单记录,一个订单里边可以包含多个 商品(也可以理解为多个购物项) 。理清这个逻辑之后,我们

    2024年02月05日
    浏览(52)
  • Html购物车

    目录 一.登陆界面 二.注册界面 三.购物车界面  我的登陆界面用正则判断,昵称输入框的输入要求时3到6个大写或小写字母, placeholder时信息提示 ,它在输入框中显示,当你在输入框中输入值时,就会消失  我写了非空判断,在没有输入值就点击登陆时,就会弹出提示框(

    2024年02月08日
    浏览(47)
  • JavaWeb 购物车项目

    今天是基于我们所学的服务器存储端和三层架构来完善该项目,今天先完善一部分的功能。   1.登录 先创建一个用户表,表中有id,name,pwd三个属性首。 需要具备一个登录页面,一个处理登录数据的页面,在该页面进行判断,当该用户存在,我们跳转到商城,用户不存在回到登

    2024年02月07日
    浏览(42)
  • JavaWeb购物车项目

    目录 项目前提 数据库的创建 用户表 商品表 eclipse进行创建包和类: 主要实现功能 1、购物车用户登录 2、商品显示 3、购物车添加商品总数和价格的计算 1、购物车并不是一直放数据库 2、选择使用的技术: session:(购物车项目使用session) 好处:快(放在内存当中),存对象的

    2024年02月05日
    浏览(46)
  • Vue项目(购物车)

    目录 购物车效果展示: 购物车代码: 购物车效果展示: 此项目添加、修改、删除数据的地方都写了浏览器都会把它存储起来 下次运行项目时会把浏览器数据拿出来并在页面展示 Video_20230816145047 购物车代码: 复制完代码,需改下script中引入的vue文件地址; 可直接使用

    2024年02月12日
    浏览(39)
  • Android -- 购物车

    购物车功能描述         第一次进入购物车页面,购物车里面是空的,同时提示去逛手机商场, 如 首次进入的页面 图所示。接着去商场页面选购手机,随便挑了几部手机加入购物车,再返回购物车页面,即可看 到购物车的商品列表,如 购物车已选列表图 所示,有商品

    2023年04月08日
    浏览(34)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包