Table of Contents
vw
rem
flex & percent
Home Web Front-end HTML Tutorial 关于移动端百分比宽度的几种实现_html/css_WEB-ITnose

关于移动端百分比宽度的几种实现_html/css_WEB-ITnose

Jun 24, 2016 am 11:28 AM

由于移动端的设备宽度各不相同,而且因为竖屏宽度都比较小,所以一般都采用满屏的方式布局,而不像PC端的使用固定宽度居中的技术布局。既然要使用满屏,那么各种百分比技术就显得尤其重要,下面大概聊聊实战过程使用到的一些技术。

为了方便各种技术对比,我们使用不同的技术实现同一个四等分满屏,且每个小分为一个正方形的需求。

整体的html结构为:

// `list--xxx`表示下面具体技术的名字ul.full-list.list--xxx    .item*4
Copy after login

为了方便视觉查看,我们将奇偶数的item背景色设置不同:

.full-list .item{ background: #f5f5f5;}.full-list .item:nth-child(2n){ background: #ccc;}.full-list .item:hover{ background: #f00;}
Copy after login

demo效果见: 移动端百分比宽度的几种实现

vw

这是一个新的系列单位,总共有四个 vw, vh, vmin, vmax,分别表示视窗宽度,视窗高度,视窗宽高中的最小值,视窗宽高中的最大值。目前android 4.3- 不支持,ios支持良好,具体参考 caniuse vw

1vw表示百分之一的视窗宽度,同理 10vw就是百分之十。从这新单位的出现,也知道为了移动端的百分比我们的W3C组织也是操碎了心。

为了上面所说的四等分,那每个的宽度应该为 25vw,而我们 ul的 list--xxx就是 list--vw。

.list--vw{ overflow: hidden;}.list--vw .item{ float: left; width: 25vw; height: 25vw;}
Copy after login

果然不亏是新的单位,分分钟解决问题,超级简单,就是目前android这边还有点不兼容难办,不过相信未来是光明的。

rem

先说明,这节所说的思想其实是手淘 lib-flexible中提出的。原理就是js获取视窗宽度,然后设置html的 font-size为视窗宽度的十分之一即百分之十,而 rem单位表示相对于根元素html的大小,所以 1rem即表示视窗宽度的十分之一。这样通过 rem与html的 font-size的关系,拐了个弯实现了一个相对于视窗宽度的百分比。

js设置html的 font-size

document.addEventListener("DOMContentLoaded", function(event) {    document.documentElement.style.fontSize = window.innerWidth/10 + "px";  });
Copy after login

css代码如下:

.list--rem{ overflow: hidden;}.list--rem .item{ float: left; width: 2.5rem; height: 2.5rem;}
Copy after login

注意这里 1rem即是百分之十的视窗宽度,而上面说的 1vw是百分之一的视窗宽度。

关于lib-flexible还有个 data-dpr的概念,感兴趣的可以研究研究,不过个人觉得这个功能除了实现ios的retina屏的1px之外,其余有点鸡肋,完全可以使用 media query解决,所以只采用了它的 font-size思想。

这里感谢下手淘为我们前端界创造了个这么好的解决方案。

flex & percent

这个应该不必多说了,现在到处都是flex,而 %的更是基础了。

直接上代码:

.list--flex{ display: flex;}.list--flex .item{ flex: 1; padding-top: 25%; height: 0;}.list--percent{ overflow: hidden;}.list--percent .item{ float: left; width: 25%; height: 0; padding-top: 25%;}
Copy after login

注意,padding或margin的 %单位都是按照父元素的宽度计算的。

当然如果只是实现等分需求的, display:table也是一个不错的选择。代码为:

.parent{ display: table; table-layout: fixed; width: 100%;}.parent > .child{ display: table-cell;}
Copy after login

最后,如果不考虑andriod 4.3- 的话 vw是最好的选择;如果考虑兼容的问题, rem的方案是最好的选择。而其余的 flex, %或是 table都不是最简单省事的,在单纯的宽度处理方面还能胜任,但如果涉及到高度随宽度同时变化,即宽高遵守某个比例(如图片或视频的变化),就需要借用padding技术撑开了。所以,如果是单纯的宽度布局就随便用了,而如果要实现某些宽高比, vm和 rem才是最优的。

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What is the purpose of the <datalist> element? What is the purpose of the <datalist> element? Mar 21, 2025 pm 12:33 PM

The article discusses the HTML &lt;datalist&gt; element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

How do I use HTML5 form validation attributes to validate user input? How do I use HTML5 form validation attributes to validate user input? Mar 17, 2025 pm 12:27 PM

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

What is the purpose of the <progress> element? What is the purpose of the <progress> element? Mar 21, 2025 pm 12:34 PM

The article discusses the HTML &lt;progress&gt; element, its purpose, styling, and differences from the &lt;meter&gt; element. The main focus is on using &lt;progress&gt; for task completion and &lt;meter&gt; for stati

What is the purpose of the <meter> element? What is the purpose of the <meter> element? Mar 21, 2025 pm 12:35 PM

The article discusses the HTML &lt;meter&gt; element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates &lt;meter&gt; from &lt;progress&gt; and ex

What are the best practices for cross-browser compatibility in HTML5? What are the best practices for cross-browser compatibility in HTML5? Mar 17, 2025 pm 12:20 PM

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

What is the purpose of the <iframe> tag? What are the security considerations when using it? What is the purpose of the <iframe> tag? What are the security considerations when using it? Mar 20, 2025 pm 06:05 PM

The article discusses the &lt;iframe&gt; tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

How do I use the HTML5 <time> element to represent dates and times semantically? How do I use the HTML5 <time> element to represent dates and times semantically? Mar 12, 2025 pm 04:05 PM

This article explains the HTML5 &lt;time&gt; element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit

What is the viewport meta tag? Why is it important for responsive design? What is the viewport meta tag? Why is it important for responsive design? Mar 20, 2025 pm 05:56 PM

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

See all articles