Socket
Socket
Sign inDemoInstall

parallax-vanilla

Package Overview
Dependencies
0
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    parallax-vanilla

Simple parallax in pure JavaScript designed for performance and dynamic sizing.


Version published
Weekly downloads
11
increased by175%
Maintainers
1
Install size
20.9 kB
Created
Weekly downloads
 

Readme

Source

parallax-vanilla.js

Seamless and lightweight parallax scrolling library implemented in pure JavaScript utilizing Hardware acceleration for extra performance.

Demo

Main features

Super lightweight without dependencies

A few kilobytes of pure JavaScript.

Viewport-only animations

Parallax elements are only animated within the current viewport, saving a lot of resources.

Dynamic sizing

Image-elements are dynamically sized and adjusted relative to the pv-speed.

Performance is key

Vanilla Parallax maximizes your parallax effects with hardware acceleration and zero external libraries.

Media type independence

The parallax effect applies not only on images but on videos as well. Videos' audio will play if the videos are clicked and remain within the viewport.

Browser support

Tested browsers:

ChromeSafariFirefox
60+10+44+

Installation

bower

bower i --save parallax-vanilla

npm

npm i --save parallax-vanilla

Include

  • Include parallax-vanilla.css in <head>
  • Include parallax-vanilla.js just before <body>
<link href="path/to/parallax-vanilla.css" />
<script src="path/to/parallax-vanilla.js"></script>

Usage

Simple usage

1. Wrap a pv-block with a pv-container.

<div class="pv-container">
  <div class="pv-block"></div>
</div>

2. Attach a mediapath to pv-block

<div class='pv-container'>
  <div class='pv-block' pv-mediapath=path/to/file.extension></div>
</div>

3. Initialize library.

<div class='pv-container'>
  <div class='pv-block' pv-mediapath=path/to/file.extension></div>></div>
</div>
<script>
  pv.init()
</script>

JavaScript initialization options

Optional global settings can be configured upon initialization.

pv.init({
  container: {
    class: String,
    height: String || Number,
  },
  block: {
    class: String,
    speed: Number || Float,
    mediapath: String,
    mediatype: String,
    mute: Boolean,
  },
})
JavaScript Settings
NameTypeDefaultDescriptionExample values
settingsObject{container, block}Settings object. These settings will be applied to each container and block. Can be individually overwritten by data attributes.{container: {...}, block: {...}
settings.containerObject{class, height}The container object.{...}
settings.container.classStringpv-containerThe class of the container element. Remember to update the CSS classes if you wish to change this.pv-container
settings.container.heightString || Number250pxThe container's height in either pixels or viewport heights. If the string lacks a suffix, or a number is entered, it will default to pixels.250px, 50vh, 250
settings.blockObject{class, speed, mediatype, mediapath}The block object.{...}
settings.block.classStringpv-blockThe class of the block element. Remember to update the CSS classes if you wish to change this.pv-block
settings.block.speedNumber || Float-Math.PIThe speed and direction at which the parallax animated. Negative values will animate the `block` upwards when scrolling downwards on the page.1, 1.5, -1, -1.5
settings.block.mediatypeStringimageThe block's media type. Blocks with mediapaths containing a video extension will automatically be considered videos.image, video or none
settings.block.mediapathStringundefinedThe block's media path.../path/to/file.ext
settings.block.muteBooleanfalseDefines whether or not all videos should be muted.true or false

Data attributes: Customize individual elements

Data attributes allow fine control over each individual element and will overwrite the global JavaScript settings.

<div class='pv-container' pv-height=100vh>
  <div class='pv-block' pv-speed=3.14 pv-mediatype=video pv-mediapath=path/to/epic_montage.mp4 pv-mute=false></div>
</div>

This code will produce a container with class pv-container with height 100vh containing a block with class pv-block with a parallax speed of 3.14 displaying the media epic_montage.mp4 of type video with pv-mute=false.

Data attributes for container
pv-height
Data attributes for block
pv-speed
pv-mediatype
pv-mediapath
pv-mute

The descriptions and the default values are the same as the corresponding properties of the JavaScript settings object.

CSS

The CSS in parallax-vanilla.css is required in order for parallax-vanilla to function properly.

.pv-container {
  ...;
}
.pv-container .pv-block {
  ...;
}
.pv-container .pv-block video {
  ...;
}
.audio-icon {
  ...;
}

LICENSE

MIT

Keywords

FAQs

Last updated on 27 Dec 2019

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