使用less编译出css引用自定义字体

本文展示了如何利用Less预处理器编写代码,自动生成不同样式和权重的Roboto字体CSS规则。通过定义变量和混合(mixins)实现代码复用,减少重复编写。编译后的CSS包括了各种字体风格和权重,方便应用于网页设计中。
摘要由CSDN通过智能技术生成
  1. 编写less文件如下
    @roboto-font-path: 'fonts';
    
    .roboto-font(@type, @weight, @style) {
        @font-face {
            font-family: 'Roboto';
            src: url('@{roboto-font-path}/Roboto-@{type}.ttf') format('truetype');
            font-weight: @weight;
            font-style: @style;
        }
    }
    
    .roboto-font-one(@type, @weight, @style) {
        .roboto-font('@{type}', @weight, @style);
    }
    
    .roboto-font-pair(@type, @weight) {
        .roboto-font('@{type}', @weight, normal);
        .roboto-font('@{type}Italic', @weight, italic);
    }
    
    .roboto-font-one('Italic', 200, italic);
    .roboto-font-one('Regular', 400, normal);
    .roboto-font-pair('Thin', 100);
    .roboto-font-pair('Light', 300);
    .roboto-font-pair('Medium', 500);
    .roboto-font-pair('Bold', 700);
    .roboto-font-pair('Black', 900);</
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值