iron-swipeable-container

WebJar for iron-swipeable-container

Лицензия

Лицензия

BSD 3-Clause
Категории

Категории

Контейнер
Группа

Группа

org.webjars.bowergithub.polymerelements
Идентификатор

Идентификатор

iron-swipeable-container
Последняя версия

Последняя версия

3.0.1
Дата

Дата

Тип

Тип

jar
Описание

Описание

iron-swipeable-container
WebJar for iron-swipeable-container
Ссылка на сайт

Ссылка на сайт

http://webjars.org
Система контроля версий

Система контроля версий

https://github.com/PolymerElements/iron-swipeable-container

Скачать iron-swipeable-container

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.webjars.bowergithub.polymerelements/iron-swipeable-container/ -->
<dependency>
    <groupId>org.webjars.bowergithub.polymerelements</groupId>
    <artifactId>iron-swipeable-container</artifactId>
    <version>3.0.1</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.bowergithub.polymerelements/iron-swipeable-container/
implementation 'org.webjars.bowergithub.polymerelements:iron-swipeable-container:3.0.1'
// https://jarcasting.com/artifacts/org.webjars.bowergithub.polymerelements/iron-swipeable-container/
implementation ("org.webjars.bowergithub.polymerelements:iron-swipeable-container:3.0.1")
'org.webjars.bowergithub.polymerelements:iron-swipeable-container:jar:3.0.1'
<dependency org="org.webjars.bowergithub.polymerelements" name="iron-swipeable-container" rev="3.0.1">
  <artifact name="iron-swipeable-container" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.bowergithub.polymerelements', module='iron-swipeable-container', version='3.0.1')
)
libraryDependencies += "org.webjars.bowergithub.polymerelements" % "iron-swipeable-container" % "3.0.1"
[org.webjars.bowergithub.polymerelements/iron-swipeable-container "3.0.1"]

Зависимости

Библиотека не имеет зависимостей. Это самодостаточное приложение, которое не зависит ни от каких других библиотек.

Модули Проекта

Данный проект не имеет модулей.

Published on NPM Build status Published on webcomponents.org

<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.

See: Documentation, Demo.

Usage

Installation

npm install --save @polymer/iron-swipeable-container

In an html file

<html>
  <head>
    <script type="module">
      import '@polymer/iron-swipeable-container/iron-swipeable-container.js';
    </script>
  </head>
  <body>
    <iron-swipeable-container>
      <div>I can be swiped</div>
      <paper-card heading="Me too!"></paper-card>
    </iron-swipeable-container>
  </body>
</html>

In a Polymer 3 element

import {PolymerElement, html} from '@polymer/polymer';
import '@polymer/iron-swipeable-container/iron-swipeable-container.js';

class SampleElement extends PolymerElement {
  static get template() {
    return html`
    <iron-swipeable-container>
      <div>I can be swiped</div>
      <paper-card heading="Me too!"></paper-card>
    </iron-swipeable-container>
    `;
  }
}
customElements.define('sample-element', SampleElement);

Contributing

If you want to send a PR to this element, here are the instructions for running the tests and demo locally:

Installation

git clone https://github.com/PolymerElements/iron-swipeable-container
cd iron-swipeable-container
npm install
npm install -g polymer-cli

Running the demo locally

polymer serve --npm
open http://127.0.0.1:<port>/demo/

Running the tests

polymer test --npm
org.webjars.bowergithub.polymerelements

Версии библиотеки

Версия
3.0.1
2.1.0