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 🙏

© 2026 – Pkg Stats / Ryan Hefner

lafite-count-down

v1.0.0

Published

基于jQuery的倒计时插件

Readme

countDown.js

简单介绍

一款基于jquery的倒计时插件, 采用prototype原型实现封装。

插件用法

//引入jq和插件
<script src="jquery-3.1.1.min.js"></script>
<script src="countDown.js"></script>

$(".main").countDown({
	times: '2018/8/20 18:00:00',  //必填'2018/8/13 18:00:00或者 2(两分钟) 
	system_time:'2018/8/18 18:00:00',
	days: true,  //天数显示
	ms: false,   //毫秒是否开启
	Hour: true,   //小时是否开启
	unit: {
		days: ':',
		hour: ':',
		min: ':',
		second: ':'
	}            //默认都是":"  可依次修改成:天、时、分、秒 看看效果
},callback);

参数说明: times: 必填。 两种形式可选('2018/8/20 18:00:00'和 number) number代表分钟。 比如3,则代表3分钟倒计时。 system_time: string 系统服务器时间,若不填写,默认取本地时间 days: boolean 默认true 天数开关 Hour: boolean 默认true 小时开关 ms: boolean 默认false 毫秒开关 unit: object 默认值全为“:”, 可自行修改 msValue: number 默认90,当ms为true时生效。 callback function 是倒计时完成后的回调函数。

作者&&插件简介

name: laftiewu qq: 863512936 v:1.0 creatTime: 2018.08.14 update: 2019.05.10 v1.2.1 --- 2018.08.22新增callback回调函数 --- 2018.08.23新增默认回调函数&&压缩版修护 --- 2019.05.09新增days参数,是否开启天数倒计时 && 新增unit对象可修改默认“:”连接展示,同时每个元素新增样式,可自己修改样式属性 --- ps: 自行修改样式,可到控制台查看元素样式 --- 2019.05.10新增system_time参数,系统服务器时间是否开启