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

scale-view

v1.0.3

Published

<a href="https://996.icu"><img src="https://img.shields.io/badge/link-996.icu-red.svg" alt="996.icu" align="right"></a>

Downloads

18

Readme

scale-view

scale-view 内包含了一组函数,这些函数可以通过 JavaScript 动态设置 CSS 样式,将样式中的固定长度转为能限制最大宽度的可伸缩的长度。scale-view 可以配合 postcss-mobile-forever 使用,scale-view 用于运行阶段,postcss-mobile-forever 用于编译阶段。

⚠️ Warning

使用 scale-view 和 postcss-mobile-forever,或是其它使用动态根元素 font-size 结合 rem,这两种方法生成的伸缩视图,不能触发浏览器的缩放功能(可以通过快捷键同时按下 CMD/Ctrl+/- 触发),不能满足针对缩放的可访问性标准,因此存在可访问性问题。查看一个关于 vw 伸缩视图的可访问性实验

安装

使用 npm 安装最新版本(yarn 则是 yarn add scale-view):

npm install scale-view

使用

init

import { init } from "scale-view";
init([idealWidth], [maxWidth]);

初始化 scale-view,应在其它函数被调用前首先调用。idealWidth 表示视图中的固定长度所基于的宽度,也就是设计稿的宽度;maxWidth 表示伸缩视图的最大宽度,该宽度将限制伸缩视图,避免无限放大。这两个入参都是可选的,默认值分别为 750 和 600。

vw

import { vw } from "scale-view";
vw(number, [unit]);

转换 px 值,使固定的值变为基于 idealWidth 的伸缩长度。number 表示值的大小,unit 表示单位,可选。

clampVw

import { clampVw } from "scale-view";
clampVw(number, [unit]);

转换 px 值,使固定的值变为基于 idealWidth 的伸缩长度,并且实际长度限制最大为 maxWidthnumber 表示值的大小,unit 表示单位,可选。

percentage

import { percentage } from "scale-view";
percentage(number, [unit]);

转换 vw 值和百分比值,百分比值应是基于包含块为浏览器窗口宽度的值,转换使原先基于浏览器窗口宽度的值变为基于 idealWidth 的值,并且受到 maxWidth 的限制。number 表示值的大小,unit 表示单位,可以传入字符串 "vw""%",如果不传,则默认为 "%"

centre

import { centre } from "scale-view";
centre(number, [unit]);

转换用于 left 和 right 属性的值,属性所在元素的包含块应是浏览器窗口,转换使 left 和 right 属性基于 idealWidth 所在的视图,而不是浏览器窗口,并且受到 maxWidth 的限制。number 表示值的大小,unit 表示单位,必填,需传入 "vw""px""px"

单元测试与参与开发

npm install
npm run test

修改源码后,编写并执行单元测试,验证是否输出了预期的结果。

一起开发,让程序的变量命名更合适、性能和功能更好。

CHANGELOG

查看更新日志

版本规则

查看语义化版本 2.0.0

协议

查看 MIT License

支持与赞助

请随意 Issue、PR 和 Star,您也可以支付该项目,支付金额由您从该项目中获得的收益自行决定。