Socket
Socket
Sign inDemoInstall

@splidejs/splide-extension-url-hash

Package Overview
Dependencies
0
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @splidejs/splide-extension-url-hash

The extension of Splide for URL hash navigation.


Version published
Weekly downloads
450
decreased by-32.94%
Maintainers
1
Install size
23.4 kB
Created
Weekly downloads
 

Readme

Source

URL Hash Navigation - Splide Extension

This is an extension of the Splide slider library for listening to hash change and move a slide to a slide having the hash name.

Also, an initial slide will correspond with the URL hash.

Installation

NPM(Recommended)

  1. Get the latest extension by NPM:
    $ npm install @splidejs/splide-extension-url-hash
    
  2. Mount the extension to the Splide.
    import Splide from '@splidejs/splide';
    import URLHash from '@splidejs/splide-extension-url-hash';
    new Splide( '#splide' ).mount( { URLHash } );
    

CDN or Hosting Files

  1. Visit jsDelivr and get the links of the latest files or download files from the dist library.
  2. Import minified stylesheet and JavaScript files on your site:
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@splidejs/splide-extension-url-hash@0.0.2/dist/css/splide-extension-url-hash.min.css">
    <script src="https://cdn.jsdelivr.net/npm/@splidejs/splide-extension-url-hash@0.0.2/dist/js/splide-extension-url-hash.min.js">
    
    Note that version numbers above are incorrect.
  3. Mount the extension to the Splide.
    new Splide( '#splide' ).mount( window.splide.Extensions );
    

HTML

Set hash values to slides by "data-splide-hash" data attribute:

<div class="splide">
    <div class="splide__track">
        <ul class="splide__list">
            <li class="splide__slide" data-splide-hash="slide01">
            </li>
            <li class="splide__slide" data-splide-hash="slide02">
            </li>
            <li class="splide__slide" data-splide-hash="slide03">
            </li>
        </ul>
    </div>
</div>

License

Splide is released under the MIT license.
© 2020 Naotoshi Fujita

Keywords

FAQs

Last updated on 15 Apr 2020

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc