开始

微信内禁止保存图片

  1. // 给图片添加这个属性
  2. pointer-events: none;
  3. user-select: none;

图片下白边

  1. // div里嵌套了img底部会有白块
  2. // 因为img默认是按基线(baseline)对齐的
  3. vertical-align: bottom; 推荐
  4. // 因为img在浏览器里的默认样式是inline,除非有特别的需要否则还是不改变盒模型为好,
  5. // 在这个问题中本质还是行内元素的纵向对齐问题,
  6. // 可以给img调整vertical-align来解决,本题中用bottom就行了
  7. displayblock; 不推荐

图片上白边

  1. // html img 图片上方产生1像素px间隙解决
  2. // 通过css对图片加一个浮动元素,比如
  3. .divcss5 img{ floatleft}
  4. // 将图片高度处理为单数(1、3、5、7单数),比如图片本身为200px高度,
  5. // 为了解决我们将图片PS处理成201px或199px高度。

小于12px

  1. font-size: 12px;
  2. transform-origin: 0% 0%; /*修正缩放引起的偏移*/
  3. transform: scale(0.92); /*缩放到视觉效果11px*/

使用div显示图片时

  1. background-color: rgba(239, 242, 247, 1); // 建议写上默认色
  2. background-position: center;
  3. background-size: cover;
  4. background-repeat: no-repeat;
  5. image-rendering: -webkit-optimize-contrast;

图片不清晰

  1. image-rendering: -webkit-optimize-contrast;

设置默认图片

div背景图方式时

  1. background-image: url(${props => props.image}), url(${iconDefaultImage});

img标签时

  1. <img src="abc.jpg" οnerrοr="nofind()" />
  2. <script type="text/javascript">
  3. function nofind(){
  4. var img=event.srcElement;
  5. img.src="http://mat1.gtimg.com/cd/2017/home/nlogo0518.png"; //替换的图片
  6. img.οnerrοr=null; //控制不要一直触发错误
  7. }
  8. </script>

文本省略号显示

文本省略号是非常常见的需求,而省略号展示又通常分为俩种情况折行和不折行。
不折行:

  1. div {
  2. overflow: hidden;/* 规定超出内容宽度的元素隐藏 */
  3. white-space:nowrap;/* 规定文本是否折行 */
  4. text-overflow: ellipsis;
  5. /* 规定超出的内容文本省略号显示,通常跟上面的属性连用,因为没有上面的属性不会触发超出规定的内容 */
  6. }

折行:

  1. div {
  2. display: -webkit-box; /* 将对象作为弹性伸缩盒子模型显示 */
  3. overflow: hidden;
  4. text-overflow: ellipsis;
  5. -webkit-line-clamp: 4; /* 控制最多显示几行 */
  6. /* autoprefixer: ignore next */ /* 编译后丢失问题 */
  7. -webkit-box-orient: vertical; /* 设置或检索伸缩盒对象的子元素的排列方式 */
  8. }

超长文本整块省略
image.png
display: inline 改为 display: inline-block 实现整块省略

  1. .person-card__desc {
  2. width: 200px;
  3. white-space: nowrap;
  4. overflow: hidden;
  5. text-overflow: ellipsis;
  6. }
  7. .person-card__desc span {
  8. display: inline-block;
  9. }

iOS 不支持整块超长溢出打点省略
image.png
解决方案,使用多行省略替代单行省略

  1. .person-card__desc {
  2. width: 200px;
  3. white-space: normal;
  4. overflow : hidden;
  5. text-overflow: ellipsis;
  6. display: -webkit-box;
  7. -webkit-line-clamp: 1;
  8. -webkit-box-orient: vertical;
  9. }
  10. .person-card__desc span {
  11. display: inline-block;
  12. }

image.png

改变滚动条样式

首先要明确滚动条的组成分为三个部分,滚动条容器 scrollbar, 滚筒条轨道 scrollbar-track,滚动条滑块 scrollbar-thumb。然而我写这篇文字的时候尝试了一下轨道的内容可以直接在容器设置,也就是没有清晰的区分容器和轨道之间的区别。

  1. div::-webkit-scrollbar {
  2. /* 这里的宽是指竖向滚动条的宽,高是指横向滚动条的高*/
  3. width: 16px;
  4. height: 16px;
  5. background: pink;
  6. }
  7. div::-webkit-scrollbar-thumb {
  8. border-radius: 10px;
  9. background:
  10. linear-gradient(red,orange);
  11. }
  12. <img src="https://pic2.zhimg.com/v2-08cb45500644b92f7037cd36f2702e22_b.jpg" data-caption="" data-size="normal" data-rawwidth="450" data-rawheight="424" class="origin_image zh-lightbox-thumb" width="450" data-original="https://pic2.zhimg.com/v2-08cb45500644b92f7037cd36f2702e22_r.jpg">

image.png

最后一个 div 不显示下边框

  1. div:not(:last-child) /* 匹配非最后一个 div 元素的 div 元素 */

设置文本俩端对齐—段落建议设置

  1. div {
  2. width: 100px;
  3. padding: 0 10px;
  4. background: pink;
  5. margin-bottom: 10px;
  6. text-align: justify; /* 这是关键属性 */
  7. text-align-last: left; /* 这是关键属性 */
  8. }
  9. <div>账号</div>
  10. <div>密码设置</div>
  11. <div>手机号</div>

image.png

图片文字水平对齐

图片使用before或者after的方式比较好。
使用img标签,可能会阻塞页面,而background-image却不会。

  1. // 第一课 的样式
  2. div {
  3. position: relative;
  4. padding: 0 0 0 11px; /* 这是关键属性,给左侧留出位置 */
  5. width: 100%;
  6. height: 18px;
  7. &:before {
  8. position: absolute;
  9. left: 0;
  10. top: 50%; /* 这是关键属性,使左侧的样式居中显示 */
  11. transform: translateY(-50%); /* 这是关键属性,使左侧的样式居中显示 */
  12. content: '';
  13. width: 3px;
  14. height: 16px;
  15. background: yellow;
  16. border-radius: 2px;
  17. }
  18. }
  1. // 说一说基金这个大家族 的样式
  2. div{
  3. position: relative;
  4. flex: 1;
  5. margin: 0 0 0 11px;
  6. padding: 0 0 0 28px; /* 这是关键属性,给左侧留出位置 */
  7. height: 44px;
  8. font-size: 16px;
  9. line-height: 44px;
  10. color: ${props => props.theme.font100};
  11. overflow: hidden;
  12. text-overflow: ellipsis;
  13. white-space: nowrap;
  14. &:before {
  15. position: absolute;
  16. left: 0;
  17. top: 50%;
  18. transform: translateY(-50%);
  19. display: inline-block;
  20. content: '';
  21. width: 16px;
  22. height: 16px;
  23. background: url(${props => props.image});/* 左边图片的尺寸是16*16 */
  24. background-repeat: no-repeat;
  25. background-size: cover;
  26. }
  27. }

image.png

格子布局

image.png

[
  {
    title: '办公系统',
    list: [
      {
        subTitle: '小帮学院',
        icon: iconUser,
        link: 'http://www.baidu.com',
      },
    ],
  },
  {
    title: '效率工具',
    list: [
      {
        subTitle: '小帮学院',
        icon: iconUser,
        link: 'http://www.baidu.com',
      },
      {
        subTitle: '小帮学院',
        icon: iconUser,
        link: 'http://www.baidu.com',
      },
    ],
  }
 ]

.cardBox {
  margin: 0 0 8px;
  width: 100%;
  border-radius: 8px;
  background-color: #ffffff;
}

.cardTitle {
  position: relative;
  padding: 12px;
  // prettier-ignore
  font-size: 14PX;
  font-weight: 400;
  color: #999999;
  &:after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    content: '';
    height: 1px;
    border-bottom: 1px solid #cccccc;
    transform: scaleY(0.33);
    overflow: hidden;
  }
}

.cardContent {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  overflow: hidden;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 33.3%;
  height: 80px;
  &:before {
    position: absolute;
    right: 0;
    top: -100px;
    bottom: 0;
    display: block;
    content: '';
    height: 240px;
    border-right: 1px solid #eeeeee;
    transform: scaleY(0.5);
    overflow: hidden;
  }
  &:after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    content: '';
    border-bottom: 1px solid #cccccc;
    transform: scaleY(0.33);
    overflow: hidden;
  }
  img {
    width: 24px;
    height: 24px;
  }
  span {
    margin-top: 8px;
    // prettier-ignore
    font-size: 16PX;
    font-weight: 400;
    color: #324057;
  }
}

.card:nth-child(3n) {
  &:before {
    border-right: 0;
  }
}

// 最下面一行的item
// 最下面一行的item
// 最下面一行的item
.card:nth-child(3n + 1):nth-last-child(-n + 3),
.card:nth-child(3n + 1):nth-last-child(-n + 3) ~ .card {
  &:after {
    border-bottom: 0;
  }
}
<div className={styles.cardBox} key={key}>
  <div className={styles.cardTitle}>{item.title}</div>
  <div className={styles.cardContent}>
    {list.map(subItem => {
    const { subTitle, icon, key: subKey } = subItem;
    return (
    <div className={styles.card} key={subKey}>
      <img src={icon} alt="" />
      <span>{subTitle}</span>
    </div>
    );
    })}
  </div>
</div>

建议

  1. 所有的段落都用p便签包含,并且加上text-align: justify; text-align-last: left;
  2. 多使用before和after解决小图标,但是如果有点击效果,最好还是使用img标签
  3. 头像的动画
  4. 如果图片质量足够了,但是图片不清晰,给图片添加 image-rendering: -webkit-optimize-contrast;

参考

  1. 开发效率创新高,只因收下了这波 CSS 操作 - MrXu的文章 - 知乎 https://zhuanlan.zhihu.com/p/80713907
  2. image-rendering 像素化图像像素(实验中)
  3. 前端DEMO以及基础的效果,CSS3简单的动画特效