Giter Club home page Giter Club logo

Comments (2)

prprprPro avatar prprprPro commented on July 25, 2024 1

想了一个不是很优雅的解决方案,给cardSwipe组件加一个manualStyle参数,然后添加一个manualSwipe函数:

manualSwipe(direction) {
  const coff = direction === 'right' ? 1 : -1
  //宽度不加100的话划出去的卡片会卡在边缘,这个可以根据实际情况适配
  this.setData({
    manualStyle: "transform: translate3d(" + coff * (this.data.contextWidth + 100) + "px, 0, " + this.data.current_z_index[this.data.current_cursor] + "px) rotate(" + coff * this.data.rotateDeg + "deg);"
  })
  this.nextCard({
    direction
  })
}

然后在nextCard函数中增加清除manualStyle的功能(setTimeout中的两个setData任选其一都可以,设置manualStyle为"")

在引入组件的页面,给组件增加一个id,然后可以使用以下代码手动滑卡片:

this.selectComponent('#id').manualSwipe(direction)

from cardswipe.

xywai1993 avatar xywai1993 commented on July 25, 2024

想了一个不是很优雅的解决方案,给cardSwipe组件加一个manualStyle参数,然后添加一个manualSwipe函数:

manualSwipe(direction) {
  const coff = direction === 'right' ? 1 : -1
  //宽度不加100的话划出去的卡片会卡在边缘,这个可以根据实际情况适配
  this.setData({
    manualStyle: "transform: translate3d(" + coff * (this.data.contextWidth + 100) + "px, 0, " + this.data.current_z_index[this.data.current_cursor] + "px) rotate(" + coff * this.data.rotateDeg + "deg);"
  })
  this.nextCard({
    direction
  })
}

然后在nextCard函数中增加清除manualStyle的功能(setTimeout中的两个setData任选其一都可以,设置manualStyle为"")

在引入组件的页面,给组件增加一个id,然后可以使用以下代码手动滑卡片:

this.selectComponent('#id').manualSwipe(direction)

感谢回复,但是我都忘了是哪个项目了,以及当时是怎么解决的了。 还是再次感谢

from cardswipe.

Related Issues (3)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.