Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ngx-parallax-mousemove

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

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

  • 1.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-50%
Maintainers
1
Weekly downloads
 
Created
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

Package last updated on 06 Nov 2017

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc