1.0.0-beta.2 • Published 5 years ago

coffeekraken-s-parallax-component v1.0.0-beta.2

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

Coffeekraken s-parallax-component

View demo

Table of content

  1. Demo
  2. Install
  3. Get Started
  4. Displacements
  5. Layers
  6. Appliers
  7. Javascript API
  8. Sugar Web Components Documentation
  9. Browsers support
  10. Code linting
  11. Contribute
  12. Who are Coffeekraken?
  13. Licence

Install

npm install coffeekraken-s-parallax-component --save

Get Started

First, import the component into your javascript file like so:

import SParallaxComponent from 'coffeekraken-s-parallax-component'

Then simply use it inside your html like so:

<s-parallax scroll-y="300">
	<!-- your coontent here... -->
</s-parallax>

Displacements

This component works around a concept of displacement. The displacement is the amount of movement the component can have depending on the scroll and/or the mouse movement A displacement is calculated based on the center of the screen and the scroll/mouse movement amount. To specify a possible displacement amount, use the scroll and mouse component property. Here's how:

<!-- this mean a possible displacement based on the mouse -->
<s-parallax mouse-x="200" mouse-y="400"></s-parallax>
<!-- this mean a possible displacement based on the scroll -->
<s-parallax scroll-y="200"></s-parallax>

Layers

To simplify the use of displacements, etc... a layer system has been built-in. A layer is simply some properties attached to a layer name that you can apply simply in your html like so:

First, register a layer

import SParallaxComponent from 'coffeekraken-s-parallax-component'
SParallaxComponent.registerLayer('my-cool-layer', {
	mouseX: 200,
	mouseY: 400
})

Then apply your layer to any s-parallax component in your html like so:

<s-parallax layer="my-cool-layer">
	<!-- your html content here... -->
</s-parallax>

Appliers

By default, this component support two ways of applying the displacement:

  1. transform: Apply the displacement as a transform css property
  2. background: Apply the displacement as a background-position css property

This list can be extended by register new appliers like so:

import SParallaxComponent from 'coffeekraken-s-parallax-component'
SParallaxComponent.registerApplier('rotate', (component, displacements) => {
	component.style.transform = `rotateX(${displacements.x}) rotateY(${displacements.y})`
})

You can then tell your s-parallax component to use this applier like so:

<s-parallax applier="rotate" layer="my-cool-layer">
	<!-- your html here... -->
</s-parallax>

Browsers support

IE / EdgeFirefoxChromeSafari
IE11+last 2 versionslast 2 versionslast 2 versions

As browsers are automatically updated, we will keep as reference the last two versions of each but this component can work on older ones as well.

The webcomponent API (custom elements, shadowDOM, etc...) is not supported in some older browsers like IE10, etc... In order to make them work, you will need to integrate the corresponding polyfill.

Code linting

This package uses some code linting rules. Here's the list:

  1. ESLint with airbnb and prettier rules for javascript files
  2. Stylelint with stylelint-config-standard for scss files

Your commits will not been accepted if the code style is not respected!

Contribute

This is an open source project and will ever be! You are more that welcomed to contribute to his development and make it more awesome every day. To do so, you have several possibilities:

  1. Share the love ❤️
  2. Declare issues
  3. Fix issues
  4. Add features
  5. Build web component

Who are Coffeekraken

We try to be some cool guys that build some cool tools to make our (and yours hopefully) every day life better.

More on who we are

License

The code is available under the MIT license. This mean that you can use, modify, or do whatever you want with it. This mean also that it is shipped to you for free, so don't be a hater and if you find some issues, etc... feel free to contribute instead of sharing your frustrations on social networks like an asshole...