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

@nn-yy/css-flex

v1.3.1

Published

Flex-layout module for css pre-processing

Downloads

8

Readme

css-flex

用于 Flex 布局模块的 CSS 预处理功能

Installation

npm

$ npm i @nn-yy/css-flex --save-dev

将仓库克隆或下载到本地。

$ git clone [email protected]:nn-yy/css-flex.git

Example

Base layout

example-1

Complex layout

example-2

see demo

Usage

导入 flex 文件,并调用方法。

scss

@import "flex";

.container {
    @include flex( center, middle );
}

sass

@import flex

.container
    +flex( center, middle )

less

@import "flex"

.container{
  .flex( between, middle )
}

stylus

@import "flex"

.container
    flex( center, middle )

注意在 webpack 中使用 '~' 前缀将路径指向 node_modules。

@import '~@nn-yy/css-flex/flex';

Document

Schematic

  ┌── start ───┬── center ──┬──── end ───┐
 top           │            │            │
  ├────────────┼────────────┼────────────┤
middle         │    ████    │            │
  ├────────────┼────────────┼────────────┤
bottom         │            │            │
  └────────────┴────────────┴────────────┘

<justify>: start | center | end
  <align>:   top | middle | bottom


between ├███ ────────── ███ ────────── ███┤

around  ├── ███ ─────── ███ ─────── ███ ──┤

<space>: between | around


keep    ├███ ███ ███ ─────────────────────┤
full    ├█╠╠╠╠╠╠╠╠╠╠███╣╣╣╣╣╣╣╣╣╣█ ███ ███┤

<flex>: auto | keep | full

API

css-flex 为容器内容 横排序(row)纵(column)排序 各提供了 3 个方法:

flex( row: start, column: top )

声明横排序的 Flex 容器,row 为水平方向参数,column 为垂直方向参数。

  • row:<justify> | <space>

    • start 居左
    • center 水平居中
    • end 居右
    • between 两端对齐
    • around 等距分布
  • column:<align>

    • top 居顶部
    • middle 垂直居中
    • bottom 居底部

flex-wrap( column: top )

允许容器内容换行,column 为多行时轴线的垂直方向参数。

  • column:auto | <align> | <space>
    • auto 默认分布
    • top 居顶部
    • middle 垂直居中
    • bottom 居底部
    • between 两端对齐
    • around 等距分布

flex-self( flex , column: auto )

定义横排序中项目自身的位置与尺寸。flex 为项目的尺寸缩放参数,column 为项目在垂直方向参数。

  • flex: <flex>
    • auto 默认分布
    • full 填充水平轴上剩余空间
    • keep 保持原有尺寸,不受缩放影响
  • column: auto | full | <align>
    • auto 默认分布
    • top 居上
    • middle 居中
    • bottom 局底部
    • full 填充垂直轴上剩余空间

flex-column( row: start, column: top )

声明纵排序的 Flex 容器,row 为水平方向参数,column 为垂直方向参数。

  • row:<justify>
    • start 居左
    • center 水平居中
    • end 居右
  • column:<align> | <space>
    • top 居顶部
    • middle 垂直居中
    • bottom 居底部
    • between 两端对齐
    • around 等距分布

flex-column-wrap( column: start )

允许容器内容换列,column 为多列时轴线的水平方向参数。

  • column:auto | <justify> | <space>
    • auto 默认分布
    • start 居左
    • center 水平居中
    • end 居右
    • between 两端对齐
    • around 等距分布

flex-column-self( flex , row: auto )

定义纵排序中项目自身的位置与尺寸。flex 为项目的尺寸缩放参数,row 为项目在水平方向参数。

  • flex: <flex>
    • auto 默认分布
    • full 填充垂直轴上剩余空间
    • keep 保持原有尺寸,不受缩放影响
  • row: auto | full | <align>
    • auto 默认分布
    • start 居上
    • center 居中
    • end 局底部
    • full 填充水平轴上剩余空间

Comptibility

项目仅提供标准的 Flexible Box Layout Module 语法,如果需要兼容老版本的语法,需要使用 autoprefixer 在生产环境中添加兼容前缀。

Log

  • 1.3.0 添加 less 支持
  • 1.2.0 添加 stylus 支持
  • 1.1.0 添加 sass 支持
  • 1.0.0 项目重命名
  • 0.3.1 为 flexflex-column 提供缺省参数
  • 0.3.0 添加参数错误提示