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

gradient-ring-progress

v1.0.3

Published

gradient-ring-progress是js编写的渐变环形进度条插件,该插件小巧不依赖其他的库 ### Demo [gradient-ring-progress](https://progress.lap.360.cn/) ### Install ``` npm i gradient-ring-progress -S ``` ### Quick Start ``` JavaScript <div id="progress" style="height: 500px; width: 500px;"><

Downloads

11

Readme

gradient-ring-progress 渐变环形进度条

gradient-ring-progress是js编写的渐变环形进度条插件,该插件小巧不依赖其他的库

Demo

gradient-ring-progress

Install

npm i gradient-ring-progress -S

Quick Start

<div id="progress" style="height: 500px; width: 500px;"></div>
import Progress from 'gradient-ring-progress'
const progress = new Progress({
  dom: document.getElementById('progress')
})
progress.init()

Options

参数 | 默认值 | 含义 ---|---|--- dom | - |[必填]进度条的父级元素 color | [['rgba(238, 73, 41, 1)', 0], ['rgba(149, 236, 105, 1)', .5], ['rgba(86, 179, 255, 1)', 1]] | 颜色值[[颜色1,百分值], ...] type | canvas | 实现方式(canvas, svg) 现在只有canvas value | 0.75 | 值, 0到1之间的数值 num | 300 | 分段数,越大渐变越精细 round | true | 是否圆角 duration | 3000 | 动画时长(需要大于分段数) innerRadius | 50 | 内圆半径 outerRadius | 60 | 外圆半径 degree | 0 | 开始角度 counterclockwise | false | 是否为逆时针 bgColor | rgba(238, 239, 243, 1) | 背景环颜色,不想要可设置为透明 fontColor | rgba(58, 87, 168, 1) | 文字颜色 fontSize | 16 | 文字大小 suffix | % | 文字后缀 toFixed | 1 | 小数位

Function

方法名 | 参数 | 含义 ---|---|--- setVal | val | 修改进度条的数据 remove | - | 删除节点

Example

image