Socket
Socket
Sign inDemoInstall

ember-swiper6

Package Overview
Dependencies
Maintainers
1
Versions
64
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ember-swiper6

Ember addon for Swiper slider library.


Version published
Weekly downloads
19K
decreased by-10.13%
Maintainers
1
Weekly downloads
 
Created
Source

ember-swiper6

Ember addon for Swiper slider v6 library.

Compatibility

  • Ember.js v3.16 or above
  • Ember CLI v2.13 or above
  • Node.js v10 or above
ember install ember-swiper6

Usage

You can change all global configuration settings via config/environment.js file.

Please check Swiper site for more configuration details.

ENV['ember-swiper6'] = {
  speed: 450,
  loop: true, // etc
};

You can import only modules you want.

Available module names:

  • a11y
  • autoplay
  • controller
  • effect-coverflow
  • effect-cube
  • effect-fade
  • effect-flip
  • hash-navigation
  • history
  • keyboard
  • lazy
  • mousewheel
  • navigation
  • pagination
  • parallax
  • scrollbar
  • thumbs
  • virtual
  • zoom
ENV['ember-swiper6'] = {
  imports: '*', // or ["*"] for every modules
};
ENV['ember-swiper6'] = {
  imports: ['a11y', 'pagination', 'navigation'], // only these modules
};

Default configuration

<Swiper as |swiper|>
  <swiper.slide> // or not contextual Swiper::Slide
    Slide 1
  </swiper.slide>
  <swiper.slide>
    Slide 2
  </swiper.slide>
  <swiper.slide>
    Slide 3
  </swiper.slide>
</Swiper>

Full configuration

<Swiper
  @loop={{false}}
  @speed={{400}}
  @spaceBetween={{100}}
  @scrollbar={{hash el='.swiper-scrollbar' hide=true}}
  @on={{hash init=(fn this.log)}} as |swiper|
>
  <!-- Block component for slides -->
  <swiper.slide>
    Slide 1
  </swiper.slide>
  <swiper.slide>
    Slide 2
  </swiper.slide>
  <swiper.slide>
    Slide 3
  </swiper.slide>
  <!-- If you use @pagination parameter you must use swiper.pagination component. Otherwise it won't show. -->
  <swiper.pagination />
  <!-- If you want to change the defaults use swiper.pagination component with block. -->
  <swiper.pagination>
    <div class="my-swiper-pagination"></div>
  </swiper.pagination>
  <!-- Same as @pagination -->
  <swiper.navigation />
  <!-- Same as @pagination -->
  <swiper.scrollbar />
  <!-- If you want to reach the instance you should use swiper.header or swiper.footer component. This yields the instance. -->
  <!-- swiper.content component is deprecated now. -->
  <!-- swiper.header will place before the slider no matter where you put. -->
  <!-- swiper.footer will place after the slider no matter where you put. -->
  <!-- That way you can reach all parameters and invoke methods like slideTo etc... -->
  <swiper.header as |self|>
    <button type="button" {{on 'click' (fn this.slideTo self)}}>
      Move
    </button>
  </swiper.header>
  <swiper.footer as |self|>
    <button type="button" {{on 'click' (fn this.slideTo self)}}>
      Move
    </button>
  </swiper.footer>
</Swiper>

All slideXXX events returns swiper instance. That way you can reach all properties like realIndex etc...

Note: If you use sass or less; ember-swiper6 will be imported automatically.

In ember-swiper6 file; after the //IMPORT_COMPONENTS line you should import the component(s) you need.

Ex: For scrollbar: @import './components/scrollbar/scrollbar'; etc...

Contributing

See the Contributing guide for details.

License

This project is licensed under the MIT License.

Keywords

FAQs

Package last updated on 08 Aug 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc