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

angular4-io-slimscroll

v2.4.2

Published

Slim scroll directive for angular4 fork from angular-io-slimscroll

Downloads

4

Readme

angular4-io-slimScroll

Customizable slimScroll directive for Angular 4.

Fork from angular-io-slimScroll. Thanks.

Code Example

You'll need to add SlimScroll to your application module.

import { SlimScroll } from 'angular4-io-slimscroll';

@NgModule({
  declarations: [
    SlimScroll,
    AppComponent
  ],
  imports: [
    ...
  ],
  bootstrap: [AppComponent]
})
export class AppModule {}

And then add slimScroll attribute with options to your element:

<div slimScroll
     width="auto"
     height="250px"
     size="7px">
    Lorem ipsum dolor sit amet...   
 </div>

Installation

npm i angular4-io-slimscroll --save

API Reference

Options can be passed to an element via html attributes:

|Property |Type |Default |Description | | :----------------- | :---- | :------------- | :---------------------------------------------------------------- | |width |string |auto |Width in pixels of the visible scroll area | |height |string |250px |Height in pixels of the visible scroll area | |size |string |7px |Width in pixels of the scrollbar and rail | |color |string |#000 |Scrollbar color, accepts any hex/color value | |position |string |right |Scrollbar position - left/right | |distance |string |1px |Distance in pixels between the side edge and the scrollbar | |start |string |top |Default scroll position on load - top / bottom | |opacity |number |.4 |Sets scrollbar opacity | |transition |number |.3 |Set transition for opacity in seconds | |alwaysVisible |boolean|false |Enables always-on mode for the scrollbar | |disableFadeOut |boolean|false |Check if we should hide the scrollbar when user is hovering over | |railVisible |boolean|false |Sets visibility of the rail | |railColor |string |#333 |Sets rail color | |railOpacity |number |.2 |Sets rail opacity | |railClass |string |slimScrollRail|Defautlt CSS class of the slimscroll rail | |barClass |string |slimScrollBar |Defautlt CSS class of the slimscroll bar | |wrapperClass |string |slimScrollDiv |Defautlt CSS class of the slimscroll wrapper | |allowPageScroll |boolean|false |Check if mousewheel should scroll the window if we reach top/bottom| |wheelStep |number |20 |Scroll amount applied to each mouse wheel step | |touchScrollStep |number |200 |Scroll amount when user is using gestures | |borderRadius |string |7px |Sets border radius | |railBorderRadius |string |7px |Sets border radius of the rail | |scrollTo |number |0 |Set default point from which to start scrolling | |autoScrollToBottom|boolean|false |Scroll to bottom on adding new content to container |