博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CSS绝对定位的应用
阅读量:5938 次
发布时间:2019-06-19

本文共 7357 字,大约阅读时间需要 24 分钟。

前面的话

  之前的博客文章已经详细介绍过绝对定位的基础知识,由于它的用途实在广泛,于是单独为其写这篇关于其应用的博客

 

静态位置

  当元素绝对定位后,若该元素的格式化属性不发生变化,则该元素处于静态位置。。元素的静态位置是指元素在正常流中原本的位置,更确切的讲,顶端的静态位置是从包含块的上边界到假想框的上外边距边界之间的距离。假想框是假设元素position属性为static时元素的第一个框。

应用

  以下是基于绝对定位静态位置的应用

跟随图标

  图标使用不依赖定位父级的absolute和margin属性进行定位,这样,当文本的字符个数改变时,图标的位置可以自适应

div{
height: 20px; width: 500px; line-height: 20px; margin-bottom: 30px;} i{
position: absolute; width: 28px; height: 11px; margin: -6px 0 0 2px; background: url('http://sandbox.runjs.cn/uploads/rs/26/ddzmgynp/hot.gif');}
长度可变文字

视频提示

  一般在视频图片上的边角上都会有"自制"、"最新"、"1080p"等诸如此类的提示。使用不依赖的绝对定位属性,可以让父级元素不设置relative,拓展性更强

i{
position: absolute; width:40px; text-align: center; height: 18px; line-height: 18px; font-style: normal; background-color: orange; color: white; padding: 2px;} .box{
height: 200px; width: 200px; border: 2px solid gray;}.in{
width: 100%; height: 100%; line-height: 100px; background-color: pink; display:inline-block;}.rt{
margin-left: -44px;}.lb{
margin-top: -22px;}.rb{
float: right; margin-top: -22px; margin-left: -44px;}
自制
测试内容
独家
1080p
最新

下拉菜单

  一般地,下拉菜单作为一个组件需要使用在各种场景中,如果给组件添加relative属性,则降低了其利用率

body{
margin: 0;} ul{
margin: 0; padding: 0; list-style: none;}input{
padding: 0; border: 0;}.box{
width: 200px; height: 38px; border: 2px solid gray;}.con{
overflow: hidden;}.input{
float: left; width: 160px; height: 38px;}.search{
width: 38px; height: 38px; float: right; background: url('http://sandbox.runjs.cn/uploads/rs/26/ddzmgynp/search.png') 0 -38px;}.list{
display:none; position: absolute; width: 158px; border: 1px solid #e6e8e9; overflow: hidden;}.in{
line-height: 30px; border-bottom: 1px solid lightblue; cursor:pointer; text-indent: 1em;}.in:hover{
background-color: #f9f9f9;}
  • 选项一
  • 选项二
  • 选项三
input.onfocus = function(){    list.style.display = 'block';}input.onblur = function(){    list.style.display = 'none';}

边缘对齐

  很多网站都使用了边缘对齐,但好多都是用页面宽度计算出来的,当宽度变化时需要重新计算。而无依赖的绝对定位利用静态位置,无需计算就可将其位置确定,且拓展性好

body{
margin: 0;}ul{
margin: 0; padding: 0; list-style: none;}.box{
width: 200px; height: 100px; border: 2px solid black; background-color: lightgreen;} .out{
text-align: right;}.list{
position: absolute; margin: 10px 0 0 2px; display: inline-block;}.in{
text-align: center; width: 20px; line-height: 20px; margin-top: 4px; background-color: pink; border-radius: 50%;}
 

星号

  在很多注册或登录页面中,存在用*表示的必填项。*和*号对齐,文字和文字对齐。这种情况使用静态位置的绝对定位比较合适

body{
margin: 0;}ul{
margin: 0; padding: 0; list-style: none;}i{
font-style: normal; color: red; position:absolute; margin-left: -10px;}.list{
width: 100px; padding-left: 20px; border: 2px solid black; line-height: 2;}
  • *手机号
  • 用户名
  • *密码

 

偏移属性

  当使用偏移属性时,绝对定位元素将相对于包含块进行定位。一般地,我们仅仅使用偏移属性中的两个,且这两个属性不对立。但实际上,对立的偏移属性如left和right可以同时使用,甚至4个偏移属性都可以同时使用,并且可以达到一些意想不到的效果。以下基于绝对定位偏移属性的应用

应用

全屏自适应

  实现一个距离屏幕右侧200px的全屏自适应的容器层

.box{
position: absolute; top: 0; left: 0; right: 200px; bottom: 0; background-color: pink;}

左右半区翻图

  一些选项卡中存在左右半区的翻图效果,点击左覆盖区切换到上一张图片,点击右覆盖区切换到下一张图片

ul{
margin: 0; padding: 0; list-style: none;}.box{
position: relative; width: 300px; height: 200px; border: 2px solid lightgray; text-align: center; font: 40px/200px '宋体'; color: white; overflow: hidden;}.list{
position: absolute; width: 400%; left: 0; top: 0; bottom: 0; transition: left 1s;}.in{
float: left; width: 25%; background-color: lightgreen;}.l,.r{
position: absolute; opacity: 0; top: 0; bottom: 0; background-color: rgba(0,0,0,0.1); cursor: pointer;}.l{
left: 0; right: 50%;}.r{
left: 50%; right: 0;}.l:hover,.r:hover{
opacity: 1; transition: 1s;}
  • 第1个
  • 第2个
  • 第3个
  • 第4个
<
>
var index = 0;var children = list.children;l.onclick = function(){    if(index > 0){        index --;        move(index);    }}r.onclick = function(){    if(index < children.length -1){        index++;        move(index);    }}function move(index){    list.style.left = '-' + index*100 + '%';}

九宫格

  利用绝对定位的偏移属性可以制作宽高自适应的九宫格效果

ul{
margin: 0; padding: 0; list-style: none;} .list{
position: absolute; top: 0; left: 0; right: 0; bottom: 0;}.in{
position: relative; float: left; height: 33.3%; width: 33.3%; background-color: pink;}.in:before{
content: ''; position: absolute; left: 10px; right: 10px; top: 10px; bottom: 10px; background-color: lightblue; border-radius: 10px;}.in:after{
content: attr(data-value); position: absolute; left: 0; right: 0; top: 0; bottom: 0; height: 30px; margin: auto; text-align: center; font:bold 24px/30px '宋体';}

等高布局

  利用overflow清除浮动的BFC的包裹性,形成一个看似等高的布局,再利用绝对定位模拟出背景和间隔线

.box{
width: 80%; margin: auto; border: 1px solid gray; overflow: hidden; position: relative; background-color: lightgreen;}.l{
box-sizing:border-box; float: left; width: 25%; position: relative;}.r{
box-sizing:border-box; float: right; width: 75%; padding: 10px; height: 100%;}.con{
position: absolute; background-color: lightblue; border-right: 1px solid #ccc; height: 9999px; width: 100%;}.show{
padding: 10px; position: relative;}
测试文字
测试文字
测试文字
测试文字
测试文字

整体布局

  整体布局的思路就是利用绝对定位元素的偏移属性来替代固定定位,首先让<page>元素满屏起到<body>元素的作用,然后各个模块各居其位。如果有其他的一些整体的页面遮罩,则与<page>元素平级

html,body{
height: 100%;}body{
margin: 0;}.page{
position: absolute; top: 0; bottom: 0; left: 0; right: 0;}header,footer{
position: absolute; left: 0; right: 0; height: 50px;}header{
top: 0; background-color: lightgreen;}footer{
bottom: 0; background-color: lightcoral;}aside{
position: absolute; left: 0; top: 50px; bottom: 50px; width: 250px; background-color: lightblue;}.content{
position: absolute; top: 50px; bottom: 50px; left: 250px; right: 0; overflow: auto; background-color: pink;}
内容区
头部
底部

转载于:https://www.cnblogs.com/xiaohuochai/p/5315942.html

你可能感兴趣的文章
如何使用RPM
查看>>
兼容所有浏览器的复制到剪切板功能,悬浮层不能复制问题解决
查看>>
DNS转发功能
查看>>
读《软件随想录》
查看>>
linux
查看>>
如何正确提高DB2数据备份和恢复的效率
查看>>
对未来Google搜索技术的深度分析转载
查看>>
ubuntu 基础环境
查看>>
redis安装
查看>>
Highcharts JS插件(折线图)
查看>>
Swift2.0(17)泛型技术
查看>>
Shell图形化监控网络流量
查看>>
Wiwiz进阶设置-标准版实现免认证有线连接
查看>>
ubuntu上pip安装
查看>>
迁移NIS/NFS服务器的处理步骤
查看>>
Normalization – NF1, NF2, NF3. How to normalize your database?
查看>>
实战 MDT 2012(一)---工具准备
查看>>
配置Linux阿里镜像源
查看>>
网站排障分析常用的命令
查看>>
thinkphp简洁、美观、靠谱的分页类
查看>>