About 3 common packages of rem adaptation

About 3 common packages of rem adaptation

Preface

I wrote an article about rem adaptation before, but I didn’t give a specific package. Today, I will give three commonly used methods and share them for your reference. Let’s learn with the editor.

1. rem1.js

The first method takes into account the problem of screen rotation on the m-side. Some processing has been done for compatibility, see the code for details.

export function rem (doc, win) {
  let docEl = doc.documentElement;
  //Considering and being compatible with screen rotation events let resizeEvt = 'orientationchange' in window ? 'orientationchange' : 'resize';
  let recalc = function () {
            var clientWidth = docEl.clientWidth;
            if (!clientWidth) return;
            if (clientWidth >= 750) {
                 docEl.style.fontSize = '100px';
            } else {
                 docEl.style.fontSize = 100 * (clientWidth / 750) + 'px';
            }
      };

   if (!doc.addEventListener) return;
    win.addEventListener(resizeEvt, recalc, false); // Adapt to screen size and rotation doc.addEventListener('DOMContentLoaded', recalc, false); // Adapt to the page when it is first opened recalc();
};

2. rem2.js

The offsetWidth length of the HTML tag is used for calculation.

export function rem() {
  var fz = document.querySelector('html').offsetWidth / 7.5; //Design drawing 750 1rem=100px
  document.querySelector('html').style.fontSize =
    fz <= 100 ? fz + 'px' : '100px';
  window.onresize = function() {
    rem();
  };
};

3. rem3.js

Using window.innerWidth to calculate, body fontSize is set to prevent font inheritance, making the page font too large.

export function rem() {
  document.documentElement.style.fontSize = window.innerWidth / 7.5 + 'px'; //1rem = 100px
  document.body.style.fontSize = '14px'; // Restore the font size on the body to avoid oversized fonts without style on the page}

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. If you have any questions, you can leave a message to communicate. Thank you for your support for 123WORDPRESS.COM.

<<:  Detailed explanation of JavaScript prototype chain

>>:  Example code of how to create a collapsed header effect using only CSS

Recommend

Semantics, writing, and best practices of link A

The semantics, writing style, and best practices ...

Why node.js is not suitable for large projects

Table of contents Preface 1. Application componen...

This article will show you how to use SQL CASE WHEN in detail

Table of contents Simple CASEWHEN function: This ...

Detailed explanation of MySQL precompilation function

This article shares the MySQL precompilation func...

A brief discussion on the pitfalls of react useEffect closure

Problem code Look at a closure problem code cause...

A brief discussion on MySQL event planning tasks

1. Check whether event is enabled show variables ...

Advanced techniques for using CSS (used in actual combat)

1. The ul tag has a padding value by default in Mo...

A detailed introduction to Linux file permissions

The excellence of Linux lies in its multi-user, m...

Vue's guide to pitfalls using throttling functions

Preface In a common business scenario, we need to...

VMware WorkStation 14 pro installation Ubuntu 17.04 tutorial

This article records the specific method of insta...

Pure CSS to achieve three-dimensional picture placement effect example code

1. Percentage basis for element width/height/padd...

Solution to the problem that the image name is none after Docker load

Recently, I found that after using the docker loa...

How to uninstall MySQL 5.7 on CentOS7

Check what is installed in mysql rpm -qa | grep -...