svelte-swipe

Svelte Swipe with zero dependencies :fire: :boom:

  • 所有者: SharifClick/svelte-swipe
  • 平台:
  • 许可证: MIT License
  • 分类:
  • 主题:
  • 喜欢:
    0
      比较:

Github星跟踪图

Svelte Swipe

NPM version NPM downloads

Swipable items wrapper component for Svelte :fire: :boom: (zero dependencies - 3.37 KB gzipped)

View the demo.

Installation

npm i svelte-swipe

Usage

<script>

  import { Swipe, SwipeItem } from "svelte-swipe"; // gzipped 3.37 KB

  let autoplay = false;
  let delay = 2000; //ms
  let showIndicators = true;
  let transitionDuration = 1000; //ms
  let defaultIndex = 0; //start from 0

</script>

<style>
  .swipe-holder{
    height: 30vh;
    width: 100%;
  }
  img{
    max-width: 100%;
    height: auto;
  }
</style>

<div class="swipe-holder">
  <Swipe {showIndicators} {autoplay} {delay} {transitionDuration} {defaultIndex}>
    <SwipeItem>
      <img src="./images/1.jpg" alt="">
    </SwipeItem>

    <SwipeItem>
      <img src="./images/2.jpg" alt="">
    </SwipeItem>

    <SwipeItem>
      <img src="./images/3.jpg" alt="">
    </SwipeItem>

    <SwipeItem>
      <img src="./images/4.jpg" alt="">
    </SwipeItem>
  </Swipe>
</div>

Pointer event inside Swipe Item

<style>
   ...

  .has-pointer-event{
    pointer-events:fill;
  }
</style>

<div class="swipe-holder">
  <Swipe>
    <SwipeItem>
      <div>
        <button class="has-pointer-event" on:click={sayHi}>Say Hi</button>
      </div>
    </SwipeItem>
    ...
  </Swipe>
</div>

Programmatically change slides


<script>
  let SwipeComp;

  function nextSlide(){
   SwipeComp.nextItem()
  }

  function prevSlide(){
    SwipeComp.prevItem()
  }

</script>
<div class="swipe-holder">
  <Swipe bind:this={SwipeComp}>
    <SwipeItem>....</SwipeItem>
    ...
  </Swipe>
</div>
<div class="buttons-holder">
  <button type="button" on:click={prevSlide}>Prev</button>
  <button type="button" on:click={nextSlide}>Next</button>
</div>

Default css custom properties


  :root{
    --sv-swipe-panel-height: inherit;
    --sv-swipe-panel-width: inherit;
    --sv-swipe-panel-wrapper-index: 2;
    --sv-swipe-indicator-active-color: grey;
  }

Props, Name, Type, Description, Required, Default, ---, ---, ---, ---, ---, autoplay, Boolean, Play items as slide, No, false, showIndicators, Boolean, appears clickable circle indicators bottom center of item, No, false, transitionDuration, Number, staying duration of per slide/swipe item, No, 200 *ms, delay, Number, transition delay, No, 1000 *ms, defaultIndex, Number, initial item index, No, 0, ## NPM Statistics

Download stats for this NPM package

NPM

Scan qr code to see url in your device

demo-url

主要指标

概览
名称与所有者SharifClick/svelte-swipe
主编程语言Svelte
编程语言JavaScript (语言数: 3)
平台
许可证MIT License
所有者活动
创建于2019-08-25 16:15:34
推送于2024-02-29 19:15:25
最后一次提交2023-11-10 19:17:58
发布数17
最新版本名称2.0.4 (发布于 )
第一版名称1.0.0 (发布于 )
用户参与
星数390
关注者数7
派生数24
提交数406
已启用问题?
问题数47
打开的问题数17
拉请求数21
打开的拉请求数3
关闭的拉请求数12
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?