npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

parallaxing

v1.0.4-1

Published

A light weight library to handle scrolling parallax effect.

Downloads

15

Readme

Parallaxing-logo

Prallaxing

A light weight library to handle scrolling parallax effect. 一个轻量级页面滚动视差效果的库

Preview 预览 Demo

This is how it looks like, you can set the parallax scrolling effect for any element with different offsets.

就如看起来这样,你可以设置滚动时候任何物体的相对位移差。

 

Installing 安装

via <script> tag

<script src="parallaxing.min.js"></script>

or you can via npm or yarn

#npm
npm install parallaxing

#yarn
yarn add parallaxing

And you can import it as follow:

import parallaxing from 'parallaxing';

Example 例子

Example HTML:

HTML例子:

<div >
  <img src='...' />
</div>

parallax: Add parallax attribute to parent node to enable parallax effect,

parallax-offset: add parallax-offset=500 attribute to child node to set 500 px distance of parallax :

给外层节点加属性 parallax 来启用视差效果,给子节点加属性 parallax-offset=500 来设置视差距离:

<div parallax>
  <img src='...' parallax-offset='500' />
</div>

then

最后调用parallaxing()

<script>
  parallaxing()
</script>

That's it! As you scrolling, your child will parallaxing to the container.

就这样! 随着你滚动,你的子元素会相对父容器产生位移差(视差效果).

Attributes Implementation 属性实现

Container's attribute 容器属性

  • parallax

    Enable parallax 让这部分生效

Child's attributes 子对象属性

  • parallax-offset

    How long you wish for the parallax offset 你想要偏移的距离

  • parallax-out

    0-100, the percentage of screen height where you finished parallax

    结束偏移的屏幕高度的百分比,屏幕最顶端为0,最底端为100

  • parallax-in

    0-100, the percentage of screen height where you started parallax

    开始偏移的屏幕高度的百分比,屏幕最顶端为0,最底端为100

Mention, you can't implements a container inside a container, and the child can't be wrapped by child, for now. 注意, 你暂时不能嵌套使用,未来等作者更新吧!

Author 作者

Yokiijay 于谦

Contact 联系

qq: 404643063