前端

Less

2020-07-08  本文已影响0人  无尾树袋熊

CSS预处理器

用某一种语言用来为 CSS 增加一些动态语言的的特性(变量、函数、继承等),CSS预处理器可以让你的 CSS 更见简洁,适应性更强,代码更直观等诸多好处

Less(Leaner Style Sheets)

一门 CSS 预处理语言,为CSS赋予了动态语言的特征

基本使用

<link rel="stylesheet/less" href="css/01.less">
<script src="js/less.js"></script>

注释

变量

@w: 400px;
@h: @w;

变量插值:格式: @{变量名称}

@size: 200px;
@w: width;
@s: div;
@{s}{
  @{w}: @size;
  height: @size;
  background: red;
}

运算

margin-left: calc(-200px * 0.5)
margin-left: (-200px / 2)

混合(Mix in)

.center(@w:100px, @h:100px, @c:red){
  width: @w;
  height: @h;
  background: @c;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.father{
  .center(200px,200px,red);
  .son{
    .center(@c:skyblue);
  }
}

可变参数

.animate(@name, @time, ...){
  transition: @arguments;
}
.a{
  .center(@c:green);
  .animate(all, 1s, linear, 0.5s);
}
.a:hover{
  width: 300px;
  height: 300px;
}

匹配模式

.triangle(@_, @w, @c){
  width: 0;
  height: 0;
  border-style: solid solid solid solid;
}
.triangle(Right, @w, @c){
  border-color: transparent transparent transparent @c;
  border-width: @w;
}
.triangle(Down, @w, @c){
  border-color: transparent transparent @c transparent;
  border-width: @w;
}
.triangle(Left, @w, @c){
  border-color: transparent @c transparent transparent;
  border-width: @w;
}
.triangle(Top, @w, @c){
  border-color: @c transparent transparent transparent;
  border-width: @w;
}
.a{
  .triangle(Down, 20px, pink);
}

导入其它文件

@import "triangle";

内置函数

由于less的底层就是用JavaScript实现的,所以JavaScript中常用的一些函数在less中都支持

// 混杂方法
    /*
    image-size("file.jpg"); // => 100px 50px
    image-width("file.jpg"); // => 100px
    image-height("file.jpg"); // => 50px

    // 单位转换
    convert(9s, "ms"); // => 9000ms
    convert(14cm, mm); // => 140mm
    convert(8, mm); // => 8

    // 列表
    @list: "A", "B", C, "D";
    length(@list); // => 4
    extract(@list, 3); // => C
    */
    // 数学
    /*
    ceil(2.1); // => 3 向上取整
    floor(2.1); // => 2 向下取整
    percentage(.3); // => 30% 转百分比
    round(1.67, 1); // => 1.7 四舍五入,保留一位小数点
    sqrt(25cm); // => 5cm 取平方根
    abs(-5cm); // => 5cm 取绝对值
    pi(); // => 3.141592653589793 圆周率π
    max(3px, 42px, 1px, 16px); // => 42px
    min(3px, 42px, 1px, 16px); // => 1px
    */
    // 字符串
    /*
    replace("Hi Tom?", "Tom", "Jack"); // => "Hi Jack"
    */
    // 判断类型
    /*
    isnumber(56px); // => true 是否含数字
    isstring("string"); // => true
    iscolor(#ff0); // => true
    iscolor(blue); // => true
    iskeyword(keyword); // => true
    isurl(url(...)); // => true
    ispixel(56px); // => true
    isem(7.8em); // => true
    ispercentage(7.8%); // => true
    isunit(4rem, rem); // => true 是否为指定单位
    isruleset(@rules); // => true 是否为变量
    */
    // 颜色操作
    /*
    增加饱和度
    saturate(color, 20%)
    减少饱和度
    desaturate(color, 20%)
    增加亮度
    lighten(color, 20%)
    减少亮度
    darken(color, 20%)
    降低透明度
    fadein(color, 10%)
    增加透明度
    fadeout(color, 10%)
    设置绝对不透明度(覆盖原透明度)
    fade(color, 20%)
    旋转色调角度
    spin(color, 10)
    将两种颜色混合,不透明度包括在计算中。
    mix(#f00, #00f, 50%)
    与白色混合
    tint(#007fff, 50%)
    与黑色混合
    shade(#007fff, 50%)
    灰度,移除饱和度
    greyscale(color)
    返回对比度最大的颜色
    contrast(color1, color2)
    */
    // 颜色混合
    /*
    每个RGB 通道相乘,然后除以255
    multiply(color1, color2);
    与 multiply 相反
    screen(color1, color2);
    使之更浅或更暗
    overlay(color1, color2)
    避免太亮或太暗
    softlight(color1, color2)
    与overlay相同,但颜色互换
    hardlight(color1, color2)
    计算每个通道(RGB)基础上的两种颜色的平均值
    average(color1, color2)
    */
@str1: "../images/1.jpg";
@str2: replace(@str1, "1", "2");
.a{
  width: 200px;
  height: 200px;
  //background: url("../images/1.jpg");
  //background: url(@str2);
  background:desaturate(yellow, 50%);
}
.a:hover{
  background:saturate(yellow, 50%);
}

层级结构

.father{
  .center(200px,200px,red);
  .pot;
  &:hover{
    background: yellowgreen;
  }
  &::before{
    content: "子元素";
    display: block;
    background: pink;
    width: 100px;
    height: 100px;
  }
  .son{
    .center(@c:skyblue);
    .pot;
  }
}

继承

.father:extend(.pot){
  .center(200px, 200px, red);
  .son:extend(.pot){
    .center(100px, 100px, yellow);
  }
}

条件判断

less中可以通过when给混合添加执行限定条件,只有条件满足(为真)才会执行混合中的代码

.size(@width,@height) when (@width = 100px),(@height = 100px){
  width: @width;
  height: @height;
}
.center(@w:100px, @h:100px, @c:red) when(ispixel(@w))and(ispixel(@h)){
  width: @w;
  height: @h;
  background: @c;
}
上一篇下一篇

猜你喜欢

热点阅读