编程式方法的好处
1.全局控制,避免样式散乱
2.代码简洁,开发快速 函数式编程大量使用函数,减少了代码的重复,因此程序比较短,开发速度较快
3.接近自然语言,易于理解 函数式编程的自由度很高,可以写出很接近自然语言的代码
4.更方便的代码管理
5.书写样式成为一门艺术
less
bad
.card-title { font: "pingfang-sc-medium"; color: #333; font-size: 18px;}.card-title { font: "pingfa事故通报ng-sc-regular"; font-size: 14px; color: #33对你爱不完 金池3;}
good
// 申明less函数.mixin-font-class(@fontcolor: yellow; @fontsize; @fontfamily) { font-family: @fontfamily; font-size: @fontsize; color: @fontcolor;}
应用
h6 { .mixin-font-class(@fontcolor:red;@fontsize:12px;@fontfamily:"pingfang-sc-medium");}h2{ .mixin-font-class(@fontcolor:blue;@fontsize:15px;@fontfamily:"pingfang-sc-regular");}
全局less
在vue-cli模式中
// 添加全局lesspluginoptions: { 'style-resources-loader': { preprocessor: 'less', patterns: [ resolve('./src/less/theme.less') ] }},
// 在任何组件中或者less文件中使用<style lang="less" scoped>.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-norma黄冈小状元达标卷l-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($f卧室装修效果图欣赏ont-family-medium, $size, $color);}@mixin font-normal($size: 14px, $color: $font-light-color) { @include font-class($font-family-regular, $size, $color);}
使用
.form-title { @include font-large(16px, red);}.form-text { @include font-large(12px, blue);}
注意less函数的参数使用的@,scss使用的$
到此这篇关于编程式处理css样式的文章就介绍到这了,更多相关编程式处理css样式内容请搜索www.887551.com以前的文章或继续浏览下面的相关文章,希望大家以后多多支持www.887551.com!
本文发布于:2023-04-03 20:29:49,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/043a6fff822fc4d458e8933e79b3c2e7.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:编程式处理Css样式的示例代码.doc
本文 PDF 下载地址:编程式处理Css样式的示例代码.pdf
留言与评论(共有 0 条评论) |