Skip to content

Instantly share code, notes, and snippets.

@ederchrono
Created May 15, 2019 06:44
Show Gist options
  • Save ederchrono/2adae90659129c0f70fb55d519881ac7 to your computer and use it in GitHub Desktop.
Save ederchrono/2adae90659129c0f70fb55d519881ac7 to your computer and use it in GitHub Desktop.
// inside computed, replacing the old one
nextImagePosition () {
const swipingRight = !this.swipingLeft
if(!this.dragging || swipingRight) {
return DEVICE_WIDTH
}
const position = DEVICE_WIDTH - (this.diffX * DRAGGING_SPEED)
return clampPosition(position)
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment