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

postcss-retina-px-border

v3.1.0

Published

PostCSS plugin which create real physical pixel border dynamically on retina screen.

Downloads

12

Readme

postcss-retina-px-border

PostCSS plugin which create real physical pixel border dynamically on retina screen.

  • if like this, could you please ⭐️star⭐ on github

History versions

  • v1.x
  • v2.x ( use inlined div )
  • v3.x use pseudo element

Fast use

install

    npm install postcss postcss-retina-px-border -D

or

    yarn add postcss postcss-retina-px-border --dev

Init

  • config in webpack(at root file postcss.config.js)
    module.exports = {
        plugins: [
            require('postcss-retina-px-border')
        ]
    }
  • import the file (the file will be generated at 'src/retina-border.scss), you can also change the filename in options.
    // app.js
    import './style/retina-border.scss';

Use and development

  • the style generated have been transfer with autoprefixer, so just use it.
  • then you can use the output selector directly, the selector with dpr 3 as follows, and you can also config by your self.
    .retina-border-box {
        position: relative;
        z-index: 1
    }
    @media screen and (-webkit-min-device-pixel-ratio: 3) {
        .retina-border-1px:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            z-index: -1;
            width: 300%;
            height: 300%;
            border-width: 1px;
            transform: scale(0.3333333333333333);
            transform-origin: 0 0
        }
        .retina-border-2px:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            z-index: -1;
            width: 300%;
            height: 300%;
            border-width: 2px;
            transform: scale(0.3333333333333333);
            transform-origin: 0 0
        }
    }
  • use in other files:

  notice: you should give a specific class selector of div such as '.text-box'. the example as follows:

    <div class="retina-border-box retina-border-1px text-box">
      <div class="content-box">box-content</div>
    </div>
  .text-box{
    width: 50vw;
    height: 40vw;
  }
  .text-box:after{
    border-color: red;
    border-style: solid;
    border-radius: 30px;
  }

Options

example

    module.exports = {
        plugins: [
            require('postcss-retina-px-border')({
                pxRange: 5
            })
        ]
    }

option list

| option | type | default | description | |:---:|:---:|:---:|:---:| | baseDir | string | rootDir-of-project/src | a relative/absolute path to generate file, and this will be joined with filename param. such as 'src/' | | filename | string | 'retina-border.scss' | the name of target file to generate style with, such as retina-border.scss、 retina-border.less | | pxRange | number | 2 | the range of borderWidth to generate | | dprRange | number | 3 | the range of dpr to generate | | selector | string | '.retina-border-%dpx' | the format of selector when generating | | baseSelector | string | '.retina-border-box' | the base-style selector |

Strategy

  • the new adaptation scheme of mobile h5 page based on viewport(vw/vh), so there is an problem that when we use small-px border, it become thicker than expected when rendered on retina screen.
  • so we enlarge pseudo element size according to dpr, and then reduce the element with scale function.