Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Hold on, we're currently generating a fresh version of this report
Generated on Mar 21, 2024 via pnpm

swiper 10.2.0

Most modern mobile touch slider and framework with hardware accelerated transitions
Package summary
Share
0
issues
1
license
1
MIT
Package created
10 Dec 2014
Version published
17 Aug 2023
Maintainers
1
Total deps
1
Direct deps
0
License
MIT

Issues

0
This package has no issues

Licenses

MIT License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
Cannot
hold-liable
Must
include-copyright
include-license
1 Packages, Including:
swiper@10.2.0
Disclaimer

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Sandworm is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Direct Dependencies

0
All Dependencies CSV
β“˜ This is a list of swiper 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities

Visualizations

Frequently Asked Questions

What does swiper do?

Swiper is a free and advanced mobile touch slider that features hardware-accelerated transitions and superior native behavior. It's primarily designed for mobile websites, mobile web apps, and mobile native/hybrid apps. Note that Swiper is focused on modern platforms only, striving to deliver the best user experience and simplicity.

How do you use swiper?

To use Swiper, you need to follow the Getting Started Guide provided on the Swiper website. Here's an example of how you can integrate Swiper into your project:

  1. First, install Swiper using npm:
npm install swiper
  1. Then, import Swiper CSS and JS into your file:
import 'swiper/swiper-bundle.css';
import Swiper from 'swiper';
  1. You can now initialize Swiper in your app:
var mySwiper = new Swiper('.swiper-container', {
  // Optional parameters
  direction: 'horizontal',
  loop: true,

  // If we need pagination
  pagination: {
    el: '.swiper-pagination',
  },

  // Navigation arrows
  navigation: {
    nextEl: '.swiper-button-next',
    prevEl: '.swiper-button-prev',
  },

  // And if we need scrollbar
  scrollbar: {
    el: '.swiper-scrollbar',
  },
});

You can customise the elements and settings based on your requirements. The structure of your HTML will also be important in order to correctly apply the Swiper functionality.

Where are the swiper docs?

Extensive documentation for Swiper, including the Getting Started Guide and API documentation, is available on the Swiper website at https://swiperjs.com. There, you can find detailed explanations and demos to help you implement and fully utilise the Swiper package in your projects.