博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
less09 判断语句
阅读量:5994 次
发布时间:2019-06-20

本文共 1198 字,大约阅读时间需要 3 分钟。

less

//.mixin (@a) when (lightness(@a) >= 50%) {
//255/2=127.5// background-color: black;//}//.mixin (@a) when (lightness(@a) < 50%) {
// background-color: white;//}//.mixin (@a) {
// color: @a;//}//.class1 {
.mixin(#7e7e7e) } //221 > 127.5 >50% background-color: black; 7e7e7e = 126//.class2 {
.mixin(#808080) } //85 <127.5 <50% background-color: white; 808080 = 128//iscolor,isnumber.....判断值得类型//.mixin (@a) when (iscolor(@a)) {
//255/2=127.5// background-color: black;//}//.mixin (@a) when (isnumber(@a) ) {
// background-color: white;// shuzi:shuzi;//}//.mixin (@a) {
// color: @a;//}//.class1 {
.mixin(#7e7e7e) } //background-color: black;//.class2 {
.mixin(123) } //background-color: white;//ispixel,ispercentage.....单位检查函数.mixin (@a) when (ispixel(@a)) {
background-color: black;}.mixin (@a) when (ispercentage(@a) ) {
background-color: white;}.mixin (@a) {
width: @a;}.class1 {
.mixin(960px) } //background-color: black; width:960px.class2 {
.mixin(95%) } //background-color: white;width:95%

css

.class1 {
background-color: black; width: 960px;}.class2 {
background-color: white; width: 95%;}

 

转载地址:http://gvqlx.baihongyu.com/

你可能感兴趣的文章
未来十年我们拼什么?
查看>>
IntelliJ IDEA Export to Eclipse Android工程不能正常被Eclipse识别的解决方法
查看>>
我的友情链接
查看>>
SVN服务注册
查看>>
6.NIO2-Path、Paths、Files
查看>>
如何对EDM邮件的用户数据进行分类
查看>>
《职场经验》
查看>>
ups机制下停电提前关闭oracle数据库
查看>>
Python基础学习篇-4-常用的正则表达式处理函数
查看>>
Linux下基础命令(五)
查看>>
python re库-----学习(正则表达式)
查看>>
python 变量赋值,引用,初始化问题
查看>>
[20180813]刷新共享池与父子游标.txt
查看>>
Win下部署Django开发环境
查看>>
malloc,calloc,alloca和free函数
查看>>
Python 时间处理
查看>>
BZOJ3160:万径人踪灭(FFT,Manacher)
查看>>
个人介绍
查看>>
静态页面公共部分的处理
查看>>
linux上最好用的sh --zsh
查看>>