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)
<iframe src=”test.jsp” width=”100″ height=”50″...
Some time ago, during development, I encountered ...
This article shares the specific code of react to...
1. Error details Once when manually performing a ...
Table of contents 1. Introduction 2. Prepare the ...
1 Question The company's server uses Apache, ...
MySQL 8 new features: My personal opinion on MySQ...
Common Nginx configuration allows cross-domain se...
It seems that the mysql-sever file for installing...
The DIV floating effect (fixed position) is imple...
width: auto The child element (including content+...
union execution For ease of analysis, use the fol...
Table of contents 1. New usage of watch 1.1. Watc...
Table of contents Preface Optional Chaining Nulli...
Explain the whole process of CLion from scratch. ...