0.0.2 • Published 7 years ago

ember-swipe v0.0.2

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

ember-swipe

This Ember addon is a direct port of the fantastic react-swipe to Ember.

It provides a wrapper for Swipe.js and gives you a component that makes it easy to create a swipeable slider in your UI.

Installation

ember install ember-swipe

You will also need to add the following styles to your stylesheet:

.swipe-container {
  overflow: hidden;
  visibility: hidden;
  position: relative;
}
.swipe-wrapper {
  overflow: hidden;
  position: relative;
}
.swipe-wrapper > div {
  float:left;
  width:100%;
  position: relative;
}