Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
scroll-parallax
Advanced tools
ES6/ES2015 unobstrusive modern HW accelerated scrollable images parallax
Oh no, why another parallax script? Do we really need it?
There are many parallax scripts but none of them was satisfying my personal needs:
So I decided to make my own and you can be free to use it or simply ignore it and move forward to the next one!
$ npm install scroll-parallax --save
# or
$ bower install scroll-parallax --save
Once you have included the script in your page, you should wrap your parallax images in a wrapper having an height
, position:relative or absolute
and overflow: hidden
The images will be stretched to fit always the whole wrapper size
<figure style="position: relative; height: 300px; overflow: hidden;">
<img class="parallax" src="path/to/the/image.jpg" />
</figure>
The Parallax api is really simple and the following snippet should be enough:
var p = new Parallax('.parallax').init()
The options available are only 4 at moment:
Type | Name | Default Value | Description |
---|---|---|---|
Number | offsetYBounds | 50 | the offset top and bottom boundaries in pixels used by the parallax to consider an image in the viewport |
Number | intensity | 30 | the intensity of the parallax effect |
Number | center | 0.5 | the vertical center of the parallax. If you increase this value the image will be centered more on the top of the screen reducing it will look centered at bottom this value should be between 0 and 1 |
Number | safeHeight | 0.15 | the safe image height gap value in percentage that ensures it can always properly parallax. Any image should be (by default) at least 15% higher than their DOM wrappers (7.5% bottom + 7.5% top) |
You can set the Parallax options in this way:
var p = new Parallax('.parallax', {
offsetYBounds: 50,
intensity: 30,
center: 0.5,
safeHeight: 0.15
}).init()
Each image could be configured using custom Parallax options (except for the offsetYBounds
) overriding the defaults:
<figure>
<img class="parallax" data-center="0.8" data-intensity="50" src="path/to/the/image.jpg" />
</figure>
<figure>
<img class="parallax" data-center="0.2" data-intensity="10" data-safe-height="0.2" src="path/to/the/image.jpg" />
</figure>
Each Parallax instance has some useful methods that could be used to adapt it to your application needs
Initialize the parallax internal event listeners. The listeners to image:loaded
and images:loaded
should be set before this method gets called
The on
method allows you to listen the internal Parallax events from the outside.
Currently it supports:
image:loaded
: when a parallax image gets completely loadedimages:loaded
: when all the images get loadeddraw
: when a parallax image comes in the viewport and gets movedresize
: when the parallax images get resizedupdate
: when the page is scrolling and the script has updated all the visible imagesp.on('image:loaded', function(image){
// do something with the image tag
})
Stop listening an internal Parallax event
var fn = function (image) {
// do something with the image tag just drawn
p.off('draw', fn) // stop listening the draw event
}
p.on('draw', fn)
Refresh the position of the images visible in the viewport
// do extremely heavy dom updates
p.refresh()
Add new images to the parallax instance
// inject new images
p.add('.parallax-2')
Remove images from the parallax instance
p.remove('.parallax-2') // remove the images from the parallax
// and also from the DOM...
Destroy the parallax instance removing all the internal and external callbacks to its internal events
p.destroy() // the parallax is dead!
$ ./make # or also `$ npm run default`
$ ./make build # or also `$ npm run build`
$ ./make test # or also `$ npm run test`
$ ./make serve # or also `$ npm run serve`
$ ./make watch # or also `$ npm run watch`
2.1.0
Parallax
class with out DOM selectors
FAQs
ES6/ES2015 unobstrusive modern HW accelerated scrollable images parallax
The npm package scroll-parallax receives a total of 68 weekly downloads. As such, scroll-parallax popularity was classified as not popular.
We found that scroll-parallax demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.