plan
Install Dependenciesnpm install px2rem-loader -D npm install lib-flexible -S Introducing dependencies import 'lib-flexible' Convert px to rem Add const cssLoader = { loader: 'css-loader', options: sourceMap: options.sourceMap } } // Add code, px to rem configuration (need to add px2remloader to the loaders array) const px2remLoader = { loader: 'px2rem-loader', options: remUnit: 192, //According to the visual draft, rem is one tenth of px, 1920px 192 rem // remPrecision: 8 // How many decimal places are retained in the converted rem} } Put it in the loaders array // generate loader string to be used with extract text plugin function generateLoaders (loader, loaderOptions) { const loaders = options.usePostCSS ? [cssLoader, postcssLoader, px2remLoader] : [cssLoader, px2remLoader] if (loader) { loaders.push({ loader: loader + '-loader', options: Object.assign({}, loaderOptions, { sourceMap: options.sourceMap }) }) } //... } Modify flexible.js Global search for Modify the code to suit the PC side function refreshRem(){ var width = docEl.getBoundingClientRect().width; if (width / dpr > 540) { width = width * dpr; } //Scaling ratio, can be modified according to actual situation var rem = width / 8; docEl.style.fontSize = rem + 'px'; flexible.rem = win.rem = rem; } For styles that you do not want to be converted, you can add Reference blog VUE PC-side adaptation solution flexible + px2remLoader This concludes this article about the sample code for Vue's PC-side resolution adaptation. For more information about Vue's PC-side resolution adaptation, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Summary of some related operations of Linux scheduled tasks
>>: How to convert mysql bin-log log files to sql files
K8s k8s is a cluster. There are multiple Namespac...
The specific code for JavaScript to implement the...
In some interview experiences, you can often see ...
Being an operation and maintenance engineer is a ...
1. Basic Spring-boot Quick Start 1.1 Quick start ...
In react-router, the jump in the component can be...
Building an image is a very important process in ...
Searching online for methods to deploy Angular pr...
Compared with ordinary programs, dynamic link lib...
Table of contents Tomcat class loader hierarchy W...
Copy code The code is as follows: <!-- List ta...
Find the problem Let's look at the problem fi...
In JavaScript, use the removeAttribute() method o...
The method of using CSS style to vertically cente...
Table of contents introduction Distinguish betwee...