Implementation of postcss-pxtorem mobile adaptation

Implementation of postcss-pxtorem mobile adaptation

Execute the command to install the plugin postcss-pxtorem

npm install postcss-pxtorem -D

Create a new package.json in the same directory as postcss.config.js. The content of the file is as follows

module.exports = {
  plugins: {
    'autoprefixer': {
      browsers: ['Android >= 4.0', 'iOS >= 7']
    },
    'postcss-pxtorem': {
      rootValue: 32, //The result is: design element size/32 (generally, the root element size of a 750px design is set to 32). For example, if the element width is 320px, the final page will be converted to 10rem
      propList: ['*'], //property selector, * indicates general selectorBlackList:[] ignores the selector.ig- indicates that all the selectors starting with .ig- will not be converted}
  }
}

After the configuration of postcss.config.js is completed, the project needs to be restarted to take effect

Create a new rem.js file in the util directory in the root directory src.

// rem proportional adaptation configuration file // Base size const baseSize = 750 // Note that this value must be consistent with the rootValue in the postcss.config.js file // Set rem function function setRem () {
  // The current page width is relative to the 375 width scaling ratio, which can be modified according to your needs. Generally, the design draft is 750 width (you can get the design drawing and modify it for convenience).
  const scale = document.documentElement.clientWidth / 375
  // Set the font size of the root node of the page ("Math.min(scale, 2)" means the maximum magnification ratio is 2, which can be adjusted according to actual business needs)
  document.documentElement.style.fontSize = baseSize * Math.min(scale, 2) + 'px'
}
// Initialize setRem()
// Reset rem when changing window size
window.onresize = function () {
  setRem()
}

Import the rem.js file into main.js and start the project

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

<<:  Collection of 25 fonts used in famous website logos

>>:  Detailed explanation of how to pass values ​​between react hooks components (using ts)

Recommend

iframe parameters with instructions and examples

<iframe src=”test.jsp” width=”100″ height=”50″...

How to add color mask to background image in CSS3

Some time ago, during development, I encountered ...

React implements infinite loop scrolling information

This article shares the specific code of react to...

An Uncommon Error and Solution for SQL Server Full Backup

1. Error details Once when manually performing a ...

A brief discussion on group by in MySQL

Table of contents 1. Introduction 2. Prepare the ...

Centos7 installation of MySQL8 tutorial

MySQL 8 new features: My personal opinion on MySQ...

How to use map to allow multiple domain names to cross domains in Nginx

Common Nginx configuration allows cross-domain se...

Tutorial on installing MySQL on Alibaba Cloud Centos 7.5

It seems that the mysql-sever file for installing...

Sample code for implementing DIV suspension with pure CSS (fixed position)

The DIV floating effect (fixed position) is imple...

A brief discussion on when MySQL uses internal temporary tables

union execution For ease of analysis, use the fol...

New usage of watch and watchEffect in Vue 3

Table of contents 1. New usage of watch 1.1. Watc...

A brief discussion of 3 new features worth noting in TypeScript 3.7

Table of contents Preface Optional Chaining Nulli...