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.
parallax_content
Advanced tools
Create captivating parallax contents effortlessly with the ParallaxContent plugin. This lightweight Vanilla JavaScript plugin, powered by GSAP animation, supports Scroll and Gyroscope events.
Features:
# NPM
npm install parallax_content
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.10.4/gsap.min.js"></script>
<script src="parallaxBackground.umd.js"></script>
<div class="parallax-title">Parallax title</div>
<script type="text/javascript">
//Initialize with Vanilla JavaScript
new ParallaxContent(document.querySelector('.parallax-title'));
//Initialize with jQuery
$(document).ready(function () {
$('.parallax-title').parallaxContent();
});
</script>
<html>
<head>
<title>My website</title>
</head>
<body>
<div class="parallax-title">Parallax title</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.10.4/gsap.min.js"></script>
<script src="https://code.jquery.com/jquery-3.7.1.js"></script>
//optional for jQuery initialize
<script src="node_modules/parallax_content/dist/parallaxContent.umd.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$('.parallax-title').parallaxContent();
});
</script>
<script type="text/javascript">
//Initialize with Vanilla JavaScript
new ParallaxBackground(document.querySelector('.parallax-title'));
//Initialize with jQuery
$(document).ready(function () {
$('.parallax-title').parallaxContent();
});
</script>
</body>
</html>
In parallaxContent you can add settings using the data-parallax-content attribute. You still need to call new ParallaxContent(selector) to initialize parallaxContent on the element.
Example:
<div data-parallax-content='{"shift": 10, "duration": 4}'></div>
Option | Type | Default |
---|---|---|
events | [SCROLL, MOUSE, GYRO] | [SCROLL] |
shift | int | 10 |
duration | int | 1.5 |
gyroSensitivity | int | 30 |
If you'd like to get involved, please consider opening an issue or submitting a pull request. Your input is highly valued, and I'm enthusiastic about collaborating to enhance this tool.
parallax-content is released under the MIT License. See the LICENSE file for comprehensive details regarding the terms and conditions of use.
FAQs
VanillaJS parallax content plugin
The npm package parallax_content receives a total of 0 weekly downloads. As such, parallax_content popularity was classified as not popular.
We found that parallax_content demonstrated a healthy version release cadence and project activity because the last version was released less than 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.