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

axial3d

v1.1.2

Published

3D effect page like github404

Downloads

49

Readme

轴动效果 axial3d

npm version npm downloads MIT

3D效果页插件,类似 Github404 页面动画。

安装引入 Install

npm install axial3d

or

<script src="https://unpkg.com/axial3d"></script>

例子 Example

Demo

<html>
<head>
    <title>Demo - Axial3d</title>
</head>
<body>
    <script src="https://unpkg.com/axial3d"></script>
    <div id="axial3d"></div>
    <script>
        (function () {
            var options = {
                selector: '#axial3d',
                imgs: [
                    {src: 'https://bestvist.github.io/axial3d/public/demo1/bg.png', left: '50px', top: '10px'},
                    {src: 'https://bestvist.github.io/axial3d/public/demo1/2.png', left: '150px', top: '10px'},
                    {src: 'https://bestvist.github.io/axial3d/public/demo1/3.png', left: '50px', top: '300px'},
                    {src: 'https://bestvist.github.io/axial3d/public/demo1/4.png', left: '300px', top: '300px'}
                ]
            }
            var effect = new Axial3d(options);
        })()
    </script>
</body>
</html>

属性 Props

options

| 属性 | 说明 | 类型 | 可选值 | 默认值 | |-|-|-|-|-| | selector | 元素选择器 | String | - | - | | imgs | 图片组 | Array | - | - | | transform | 动画形式 | String | translate / rotate | translate | | swing | 动画幅度 | Number | - | 5 |

imgs options

| 属性 | 说明 | 类型 | 可选值 | 默认值 | |-|-|-|-|-| | src | 图像路径 | String | - | - | | top | 图片顶部定位 | String | - | - | | bottom | 图片底部定位 | String | - | - | | left | 图片左侧定位 | String | - | - | | right | 图片右侧定位 | String | - | - | | static | 图片是否静态,不随鼠标转动 | Boolean | true / false | false |

方法 Methods

| 事件名称 | 说明 | 回调参数 | |-|-|-| | destory | 取消事件监听 | - |

License

MIT