码迷,mamicode.com
首页 > 其他好文 > 详细

嵌套调用less函数时参数值的变化及提取部分-遁地龙卷风

时间:2017-06-11 10:22:40      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:字符串   调用   color   less   div   content   web   near   nim   

在a.less中导入base.less
a.less中的代码

.animate-ripple-ink{
.animation(ripple .5s linear;{
100%{
opacity: 0;
.transform(scale(2.5));
}
});
}

base.less中的代码

.animation(@value;@content){
-webkit-animation: @value;
-moz-animation: @value;
-o-animation: @value;
-ms-animation: @value;
animation: @value;
.keyframes(~`"@{value}".split(/,\s+/)[0].replace("[","")`,@content);
}

@value的值为[ripple, .5s, linear]
"@{value}"成为字符串"[ripple, .5s, linear]",避免js解析错误。
~避免编译,不加则输出为"ripple"
Tips:

.animate-ripple-ink{
.animation(ripple .5s linear;{
100%{
opacity: 0;
.transform(scale(2.5));
}
});

 

少一个},less竟然不报错,而是调用一个参数的.animation !我觉的这是一个bug。

嵌套调用less函数时参数值的变化及提取部分-遁地龙卷风

标签:字符串   调用   color   less   div   content   web   near   nim   

原文地址:http://www.cnblogs.com/resolvent/p/6984149.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!