A brief discussion on the perfect adaptation solution for Vue mobile terminal

A brief discussion on the perfect adaptation solution for Vue mobile terminal

Preface: Based on a recent medical mobile project, how does Vue adapt to different screen sizes on different screens?

1. Adaptation solution

The vue mobile solution I used in this project is a combination of amfe-flexible and postcss-pxtorem).

First, let me introduce amfe-flexible

amfe-flexible is a flexible layout configuration scheme, mainly setting 1rem to viewWidth/10.

Then there is this library postcss-pxtorem

postcss-pxtorem is a postcss plugin that converts pixel units to rem units.

2. How to use and configure?

1. Install amfe-flexible and postcss-pxtorem

npm install amfe-flexible --save
npm install postcss-pxtorem --save

2. After the installation is complete, it must be introduced before it can be used

We need to import it in main.js to use it

import 'amfe-flexible';

This import is OK

3. Then comes the postcss-pxtorem configuration steps

To configure postcss-pxtorem, you can configure it in one of vue.config.js, .postcssrc.js, and postcss.config.js. The weight decreases from left to right. If there is no such file, create a new file. You only need to set one of them:

For convenience, I configured the code in vue.config.js as follows:

module.exports = {
    //...other configuration css: {
        loaderOptions: {
            postcss: {
                plugins: [
                    require('postcss-pxtorem')({
                        rootValue: 37.5,
                        propList: ['*']
                    })
                ]
            }
        }
    },
}

Configure in .postcssrc.js or postcss.config.js as follows:

module.exports = {
    "plugins": {
        'postcss-pxtorem': {
            rootValue: 37.5,
            propList: ['*']
        }
    }
}

Note:
1. Set rootValue according to the width of the design divided by 10. Here, assuming the design is 375, rootValue is set to 37.5.
2. propList is used to set the properties that need to be converted. Here, * means all properties are converted.

With the above configuration we can use it in the project.

For example, in our project we write:

.login-form {
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 10px;
    .title {
      position: absolute;
      top: -50px;
      font-size: 24px;
      color: #fff;
      left: 0;
      right: 0;
      text-align: center;
    }
  }

Then the output of our code is as follows, and the plug-in helps us convert units automatically.

login-wraper .login-form {
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: #fff;
    padding: .53333rem; // Note that this is the converted unit box-sizing: border-box;
    border-radius: .26667rem; // Note that this is the converted unit}

This is the end of this article about the perfect adaptation solution for vue mobile terminals. For more relevant content about the perfect adaptation solution for vue mobile terminals, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Vue uses rem to achieve mobile screen adaptation
  • Vue is the best solution for mobile adaptation (tested and effective)
  • Detailed explanation of the adaptation of Vue mobile projects (taking mint-ui as an example)
  • Detailed explanation of vue mobile adaptation solution
  • Detailed explanation of Vue mobile screen adaptation
  • Solve the vue mobile adaptation problem
  • Detailed explanation of the adaptive adaptation problem of Vue mobile terminal

<<:  Three ways to avoid duplicate insertion of data in MySql

>>:  How does MySQL implement ACID transactions?

Recommend

jQuery uses the canvas tag to draw the verification code

The <canvas> element is designed for client...

How to develop uniapp using vscode

Because I have always used vscode to develop fron...

Solution to IDEA not being able to connect to MySQL port number occupation

I can log in to MYSQL normally under the command ...

JS implements jQuery's append function

Table of contents Show Me The Code Test the effec...

B2C website user experience detail design reference

Recently, when using Apple.com/Ebay.com/Amazon.co...

Learn about JavaScript closure functions in one article

Table of contents Variable Scope The concept of c...

MySQL 5.6.28 installation and configuration tutorial under Linux (Ubuntu)

mysql5.6.28 installation and configuration method...

How to change the color of the entire row (tr) when the mouse stops in HTML

Use pure CSS to change the background color of a ...

How to build LNMP environment on Ubuntu 20.04

Simple description Since it was built with Centos...

Analysis of the process of deploying Python applications in Docker containers

Simple application deployment 1. Directory struct...

Detailed explanation of MySQL EXPLAIN output columns

1. Introduction The EXPLAIN statement provides in...

What are the rules for context in JavaScript functions?

Table of contents 1. Rule 1: Object.Method() 1.1 ...

HTML table tag tutorial (23): row border color attribute BORDERCOLORDARK

In rows, dark border colors can be defined indivi...

jQuery to achieve the barrage effect case

This article shares the specific code of jQuery t...