WEb开发之H5+CSS篇

WEb开发之H5+CSS篇

精灵图(CSS Sprites CSS雪碧)

  1. 主要针对背景图片使用,把多个小背景图片整合到一张大图片中。
  2. 主要借助于背景位置来实现-background-position
  3. 一般情况下精灵图都是负值。(网页坐标:X轴向右移动是正值,向左移动是负值。y轴同理)

字体图标

主要用于显示网页中通用,常用的一些小图标。

icomoon

阿里巴巴矢量图标库

复制style.css中第一个代码。

@font-face {

 font-family: 'icomoon';

 src: url('fonts/icomoon.eot?4rafs4');

 src: url('fonts/icomoon.eot?4rafs4#iefix') format('embedded-opentype'),

  url('fonts/icomoon.ttf?4rafs4') format('truetype'),

  url('fonts/icomoon.woff?4rafs4') format('woff'),

  url('fonts/icomoon.svg?4rafs4#icomoon') format('svg');

 font-weight: normal;

 font-style: normal;

 font-display: block;

}

将font文件夹拖出来放到项目目录下。

image-20201216104344461

字体图标的追加及加载原理。

CSS三角

CSS用户界面

界面样式,就是更改一些用户操作样式,以便一稿更好的用户体验。

  1. 更改用户的鼠标样式。

    ​ default(默认)

    cursor pointer(小手) text(文本)

    ​ move(移动) not-allowed(禁止)

  2. 表单轮廓。

    outline none(去掉默认边框)

  3. 防止表单域拖拽。

    resize none(文本域右下角是不可以拖拽的)

**vertical - align属性使用:**用于设置图片或者表单(行内块元素)和文字垂直对齐。

baseline 默认,元素放置在父元素的基线上。

top 把元素的顶端与行中最高元素的顶端对齐。

middle 把此元素放置在父元素的中部。

bottom 把元素的顶端与行中最低元素的顶端对齐。

注意:解决图片底部默认空白缝隙。

原因:行内块元素会和文字的基线对齐。

​ 1.给图片添加vertical-align。

​ 2.将图片转化为块级元素,display:block

溢出的文字省略号显示

  1. 单行文本溢出显示省略号。

    先强制一行内显示文本

    ​ white-space : nowrap/normal

    超出的部分隐藏

    ​ overflow : hidden

    文字用省略号替代超出的部分

    ​ text-overflow: ellipsis(省略号)

  2. 多行文本溢出显示省略号,适合于webKit浏览器或移动端。

    ​ overflow : hidden

    ​ text-overflow: ellipsis(省略号)

    弹性伸缩盒子模型显示。

    ​ display: -webkit-box

    限制在一个块元素显示的文本的行数

    ​ -webkit- line-clamp:2(行数)

    设置或检索伸缩盒对象的子元素的排列方式

    ​ -webkit-box-orient:vertical

常见的布局技巧

margin负值的应用

如果盒子没有定位,则鼠标经过添加相对定位即可。

image-20201216190817806

如果li都有定位,则利用z-index提高层级。

image-20201216191101444

文字围绕浮动元素

image-20201216192514562 image-20201216192549087 image-20201216192618817

行内块的巧妙运用**

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-3nWu1Qgx-1619575027388)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20201216194937831.png)]

<!DOCTYPE html>

<html lang="en">



<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <style>

​    \* {

​      margin: 0;

​      padding: 0;

​    }

​    

​    .box {

​      text-align: center;

​    }

​    

​    .box a {

​      display: inline-block;

​      width: 36px;

​      height: 36px;

​      background-color: #ccc;

​      border: 1px solid gray;

​      text-align: center;

​      line-height: 36px;

​      color: salmon;

​      text-decoration: none;

​      font-size: 14px;

​    }

​    

​    .box .prev,

​    .box .next {

​      width: 85px;

​    }

​    

​    .box .current,

​    .box.elp {

​      color: gray;

​      border: none;

​      background-color: #fff;

​    }

​    

​    .box input {

​      height: 36px;

​      width: 45px;

​      border: 1px solid #ccc;

​      outline: none;

​    }

​    

​    .box button {

​      width: 60px;

​      height: 45px;

​      background-color: gray;

​      border: 1px solid #ccc;

​    }

  </style>

  <title>Document</title>

</head>



<body>

    <div class="box">

        <a href="" class="prev">&lt;&lt;上一页</a>

        <a href="" class="current">2</a>

        <a href="">3</a>

        <a href="">4</a>

        <a href="">5</a>

        <a href="">6</a>

        <a href="" class="elp">...</a>

        <a href="" class="next">&gt;&gt;下一页</a> 到第

​    <input type="text"> 页

​    <button>确定</button>

  </div>

</body>



</html>

CSS三角强化

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-ximicsLI-1619575027392)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20201216201320195.png)]

<!DOCTYPE html>

<html lang="en">



<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <style>

​    .price {

​      width: 160px;

​      height: 24px;

​      border: 1px solid red;

​      margin: 66px auto;

​      line-height: 24px;

​    }

​    

​    .left {

​      float: left;

​      position: relative;

​      width: 90px;

​      height: 100%;

​      background-color: red;

​      text-align: center;

​      color: white;

​      font-weight: 700;

​      margin-right: 6px;

​    }

​    

​    .left i {

​      position: absolute;

​      right: 0;

​      top: 0;

​      width: 0;

​      height: 0;

​      border-color: transparent white transparent transparent;

​      border-style: solid;

​      border-width: 24px 10px 0 0;

​    }

​    

​    .price .right {

​      color: grey;

​      font-size: 12px;

​      text-decoration: line-through;

​    }

  </style>

  <title>Document</title>

</head>



<body>



    <div class="price">

​    <span class="left">¥1234

​      <i></i>

​    </span>

​    <span class="right">¥3213</span>

  </div>

</body>



</html>

CSS初始化

重设浏览器的样式(CSS reset),每个网页都必须首先进行CSS初始化。

border 0 照顾低版本浏览器,有些加载图片链接有边框。

-webkit-font-smoothing:antialiased CSS抗锯齿形,让文字显示的更加清晰。

中文字体名称用Unicode编码来代替。

黑体\9ED1\4F53

宋体\5B8B\4F53

微软雅黑\5FAE\8F6F\96C5\9ED1
爱你
每日一句
少而好学,如日出之阳;壮而好学,如日中之光;志而好学,如炳烛之光。

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

全栈工程师MrL

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值