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

gqc-plugin

v1.0.1

Published

jQuery plugin collection

Downloads

5

Readme

jQueryPlugin

一个jQuery插件集合, 包括回到顶部插件, 懒加载插件, 轮播插件, stickUp插件, 瀑布流布局插件

backTop

Demo

简介

点击回到顶部插件, 可以设置滚到哪个部位回到顶部

用法

选中作为backTop的元素, 调用backTop方法, backTop接受一个参数, 参数类型为number, 表示scrollTop的距离为多少时, backTop的按钮才显示出来, 例如

$('.backtop').backTop(200)

lazyLoad

Demo

简介

实现图片懒加载的插件

用法

在需要lazyload的img元素中, src使用占位图片的url, data-src使用真实图片的url, 然后选中需要懒加载的图片元素, 调用lazyLoad()方法

$('.wrapper').find('img').lazyLoad()

slide

Demo

简介

无限滚动的轮播插件, 支持跳转到任意一页, 自动滚动, 鼠标悬浮停止

用法

需要使用和Demo同样的HTML结构, 和一些必要的CSS

  • HTML
<div class="slide-wrapper">
    <div class="viewport">
        <ul class="slide">
            <li class="slide-item"><a href="#!"><img src="img/1.jpg" alt=""></a></li>
            <li class="slide-item"><a href="#!"><img src="img/2.jpg" alt=""></a></li>
            <li class="slide-item"><a href="#!"><img src="img/3.jpg" alt=""></a></li>
            <li class="slide-item"><a href="#!"><img src="img/4.jpg" alt=""></a></li>
        </ul>
    </div>
    <a href="#!" class="slide-btn btn-prev">&lt;</a>
    <a href="#!" class="slide-btn btn-next">&gt;</a>
    <ul class="btn-bullet">
        <li class="bullet-item selected"><div class="item-contain"></div></li>
        <li class="bullet-item"><div class="item-contain"></div></li>
        <li class="bullet-item"><div class="item-contain"></div></li>
        <li class="bullet-item"><div class="item-contain"></div></li>
    </ul>
</div>
  • CSS
.slide-wrapper {
    float: left;
    position: relative;
}
.viewport {
    position: relative;
    /*图片的宽高*/
    width: 1080px;
    height: 432px;
    overflow: hidden;
}
.slide {
    position: absolute;
}

.slide > li {
    float: left;
}
.slide img {
    width: 100%;
    vertical-align: bottom;
}
/*button的样式需要另外设置*/

HTML和CSS设置好以后, 只需要获取.slide-wrapper, 使用slide方法就可以

$('.slide-wrapper').slide()

stickUp

Demo

简介

当页面滚动时, 不同栏目的导航栏可以始终在浏览器窗口顶端

用法

必要的CSS

.stick-up {
    position: fixed;
    top: 0;
    /*z-index层级可以自由设置*/
    z-index: 99;
}

对需要stickUp的导航栏使用stickUp方法即可

$('.nav').stickUp()

waterFall

Demo

简介

实现瀑布流布局的插件

用法

获取需要瀑布流布局的元素, 使用waterFall方法, 需要传入容器, 不传默认是window

$('.item').waterFall($('.content'))

如果需要窗口大小改变时自适应可以加上

$(window).on('resize', function(){
    $('.item').waterFall($('.content'))
})