npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@netocny/ng-page-slider

v1.1.0

Published

[![CircleCI](https://circleci.com/gh/Eddman/ng-page-slider.svg?style=svg)](https://circleci.com/gh/Eddman/ng-page-slider)

Downloads

4

Readme

CircleCI

Fork of KeatonTech/Angular-2-Page-Slider.

Mimicks the functionality of UIPageViewController in pure HTML for mobile web apps, using DOM recycling and CSS3 transitions for near-native performance. Built with Angular 9, and designed to work seamlessly in normal NG2 templates.

Designed for Angular 15.0.0+

Live Demo

https://samuel.netocny.com

Example Usage

Installation

npm install --save @netocny/ng-page-slider

Typescript

import {Component, NgModule} from '@angular/core';
import {NgPageSliderModule} from '@netocny/ng-page-slider';
import {of} from 'rxjs';

@Component({
    selector: 'example-component',
    template: `
		<ng-page-slider
                *ngIf="pages | async as loadedPages"
                [enableArrowKeys]="keysEnabled"
                [transitionDuration]="loadedPages.duration"
                [autoScrollInterval]="loadedPages.autoSlide">
            <!-- Pages -->
            <div *ngSliderPages="let page of loadedPages.images" 
                    class="page">
                <img [src]="page.imageURL">
                <span class="title">{{page.title}}</span>
            </div>
        </ng-page-slider>
	`,
    styles  : [
        `.page {
            overflow: hidden;   
        }`,
        `img {
            height: 100%;
            margin: auto;
            display: block;
        }`,
        `.title {
            font-size: 20px;
            color: white;
            position: absolute;
            bottom: 15px;
            left: 50%;
        }`
    ]
})
export class ExampleComponent {
    public keysEnabled: boolean = true;
    public pages = of({
        duration : 700,
        autoSlide: 2000,
        images   : [
            {
                title   : "Page 1",
                imageURL: 'some/image.png'
            },
            {
                title   : "Page 2",
                imageURL: 'some/other_image.png'
            }
        ]
    });
}

@NgModule({
    imports     : [
        NgPageSliderModule
    ],
    declarations: [
        ExampleComponent
    ]
})
export class ExampleModule {
}

Styles - SCSS

And in styles.scss include:

@import "~@netocny/ng-page-slider/ng-page-slider";

// Below this thershold the relative CSS units will be used and 
// parts of the component became smaller (responsive design)
$minimal_page_width: 900px;
$page_margin: 15px;

@include ng-page-slider($minimal_page_width, $page_margin);

// All options and defaults
@include ng-page-slider(
        $optimal_width, $page_margin,
    $arrow_size: 44px,
    $arrow_line_height: 37px,
    $arrow_color: white, $arrow_background: rgba(125, 125, 125, 0.4),
    $dot_size: 6px, $dot_bottom_offset: 9px,
    $dot_color: white
)

API

NgPageSliderComponent (ng-page-slider)

Container component for pages. Handles touch events, resizing and animation.

Input Properties

  • page: Current page number, zero-based index.
    • Allows two-way data binding
    • Must be a number (0 <= page < pageCount)
    • Defaults to 0
  • transitionDuration: In the absence of scrolling momentum, how long should a transition take?
    • Expressed as an integer number of milliseconds >= 0
    • Defaults to 250ms
  • locked: When true, page scrolling is disabled
    • boolean, defaults to false
  • showIndicator: When true, includes a dot indicator at the bottom.
    • boolean, defaults to true
  • overlayIndicator: When true, renders indicator above the page content.
    • boolean, defaults to true
  • enableOverscroll: When true, user can scroll slightly past the first and last page.
    • boolean, defaults to true
  • enableArrowKeys: When true, the left and right arrow keys will cause page navigation.
    • boolean, defaults to true
  • autoScrollInterval: If provided the slider will auto-scroll until user interacts with it.
    • number of miliseconds before a next slide is shown
    • Must be a number - > 0 (excluding)

NgPagesRendererDirective (ngSliderPages)

Renders pages using DOM recycling, so only at most 3 exist on the DOM at any given time (previous, current, next). Modeled based on ngFor, uses the exact same looping syntax.

Provided Loop Variables

These variables are available inside of ngSliderPages, similar to ngFor loop items.

  • index: number Zero-based index of the current page.
  • isFirst: boolean True when the page is the first page.
  • isLast: boolean True when the page is the last page.
  • isActive: boolean True when the page is currently being viewed by the user.