Sample code for programmatically processing CSS styles

Sample code for programmatically processing CSS styles

Benefits of a programmatic approach

1. Global control to avoid scattered styles

2. Simple code and fast development Functional programming uses a lot of functions to reduce code duplication, so the program is shorter and the development speed is faster.

3. Close to natural language, easy to understand Functional programming has a high degree of freedom, and you can write code that is very close to natural language

4. More convenient code management

5. Writing style becomes an art

Less

Bad

.card-title {
    font: "PingFang-SC-medium";
    color: #333;
    font-size: 18px;
}

.card-title {
    font: "PingFang-SC-regular";
    font-size: 14px;
    color: #333;
}

Good

// declare less function.mixin-font-class(@fontColor: yellow; @fontSize; @fontFamily) {
    font-family: @fontFamily;
    font-size: @fontSize;
    color: @fontColor;
}

application

h6 {
        .mixin-font-class(@fontColor:red;@fontSize:12px;@fontFamily:"PingFang-SC-medium");
}
h2{
      .mixin-font-class(@fontColor:blue;@fontSize:15px;@fontFamily:"PingFang-SC-regular");
}

Global Less

In Vue-cli mode

// Add global less
pluginOptions: {
        'style-resources-loader': {
            preProcessor: 'less',
            patterns:
                resolve('./src/less/theme.less')
            ]
        }
},
// Use <style lang="less" scoped> in any component or less file
.breadTop {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 15px;
    h6 {
        .mixin-font-class(@fontColor:red;@fontSize:12px;@fontFamily:"PingFang-SC-medium");
       }
       h2{
            .mixin-font-class(@fontColor:blue;@fontSize:15px;@fontFamily:"PingFang-SC-regular");
       }
}
</style>

scss

$font-normal-color = #222;
$font-light-color = #333;

@mixin font-class($fontFamily, $fontSize, $fontColor) {
    font-family: $fontFamily;
    font-size: $fontSize;
    color: $fontColor;
}

@mixin font-large($size: 14px, $color: $font-normal-color) {
    @include font-class($font-family-medium, $size, $color);
}

@mixin font-normal($size: 14px, $color: $font-light-color) {
    @include font-class($font-family-regular, $size, $color);
}

use

.form-title {
    @include font-large(16px, red);
}

.form-text {
    @include font-large(12px, blue);
}

Note that the less function uses @ as a parameter, and scss uses $

This is the end of this article about programmatic processing of CSS styles. For more relevant content about programmatic processing of CSS styles, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope that everyone will support 123WORDPRESS.COM in the future!

<<:  MySQL helps you understand index pushdown in seconds

>>:  Detailed explanation of the JavaScript timer principle

Recommend

HTML framework_Powernode Java Academy

1. Framework A browser document window can only d...

JavaScript programming through Matlab centroid algorithm positioning learning

Table of contents Matlab Centroid Algorithm As a ...

MySQL uses frm files and ibd files to restore table data

Table of contents Introduction to frm files and i...

A complete list of meta tag settings for mobile devices

Preface When I was studying the front end before,...

Vue implements an Input component that gets the key display shortcut key effect

I encountered a requirement to customize shortcut...

CSS3 to achieve floating cloud animation

Operation effect html <head> <meta chars...

WeChat Mini Program User Authorization Best Practices Guide

Preface When developing WeChat applets, you often...

Detailed installation tutorial of Docker under CentOS

Docker is divided into CE and EE. The CE version ...

Let’s talk in detail about how JavaScript affects DOM tree construction

Table of contents Document Object Model (DOM) DOM...

Detailed instructions for installing SuPHP on CentOS 7.2

By default, PHP on CentOS 7 runs as apache or nob...

A brief discussion of four commonly used storage engines in MySQL

Introduction to four commonly used MySQL engines ...

Use vertical-align to align input and img

Putting input and img on the same line, the img ta...

Implement QR code scanning function through Vue

hint This plug-in can only be accessed under the ...

Differences between proxy_pass in two modules in nginx

1. The proxy_pass directive of the 1.ngx_stream_p...