[![Build Status](https://travis-ci.org/PolymerElements/iron-swipeable-container.svg?branch=master)](https://travis-ci.org/PolymerElements/iron-swipeable-container) _[Demo and API Docs](https://elements.polymer-project.org/elements/iron-swipeable-container)_ ##<iron-swipeable-container> `` is a container that allows any of its nested children (native or custom elements) to be swiped away. By default it supports a curved or horizontal transition, but the transition duration and properties can be customized. Example:
I can be swiped
To disable swiping on individual children, you must give them the `.disable-swipe` class. Alternatively, to disable swiping on the whole container, you can use its `disable-swipe` attribute:
I cannot be swiped be swiped
I cannot be swiped
It is a good idea to disable text selection on any of the children that you want to be swiped: .swipe { -moz-user-select: none; -ms-user-select: none; -webkit-user-select: none; user-select: none; cursor: default; }