Socket
Socket
Sign inDemoInstall

ngx-parallax-mousemove

Package Overview
Dependencies
18
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    ngx-parallax-mousemove

A simple angular lib for creating a parallax effect connected to the mousemove event


Version published
Weekly downloads
13
increased by1200%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

ngx-parallax-mousemove

A simple angular module for creating a parallax effect connected to the mousemove event.

The module provides some angular directives wrapper arround parallax-js.

Installation

If you're using npm :

npm i -s ngx-parallax-mousemove

It is also possible to install locally:

npm install --save-dev ngx-parallax-mousemove

Usage

  • Add ParallaxMousemoveModule in your app.

There are 2 main directives to use :

  • ParallaxWrapper and parallaxLayer.
<ul parallaxWrapper id="scene" [parallaxOptions]="{scalarX:40, scalarY:20,  frictionX:0.1,  frictionY:0.1, originX:0.4, originY:0.4}">
     <li parallaxLayer [depth]="0.90" style="position: absolute;min-width: 100%;">
       <img src="/assets/img/cloud.png" style="width: 960px;height: 300px">
     </li>
     <li parallaxLayer [depth]="0.50" style="min-width: 100%;height: auto;">
       <img src="/assets/img/mountain.png" style="position: absolute;width: 100%;height: auto">
     </li>
   </ul>
  • The id attribute in parallaxWrapper element is mandatory for parallax component.
  • parallaxOptions is a set of parallax properties that can be apply on layers. See parallax-js for more details.
  • parallaxLayer: Each layer needs a depth attribute corresponding to data-depth in parallax-js. The movement applied to each layer will be multiplied by its depth attribute.

Licence

MIT http://rem.mit-license.org

FAQs

Last updated on 06 Nov 2017

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