我认为这是不可能的,但我想如果有办法,我会问。我的想法是我有一个变量用于web资源文件夹的路径:
@root: "../img/";
@file: "test.css";
@url: @root@file;
.px {
background-image: url(@url);
}
我得到了这个结果:
.px { background-image: url("../img/" "test.css"); }
但是,我希望字符串组合成一个字符串,如下所示:
.px { background-image: url("../img/test.css"); }
是否可以在Less?
中将字符串连接在一起答案 0 :(得分:210)
@url: "@{root}@{file}";
完整代码:
@root: "../img/";
@file: "test.css";
@url: "@{root}@{file}";
.px{ background-image: url(@url); }
答案 1 :(得分:29)
正如您在documentation中所看到的,您可以将字符串插值与变量和纯字符串一起使用:
@base-url: "http://assets.fnord.com";
background-image: url("@{base-url}/images/bg.png");
答案 2 :(得分:12)
我正在寻找处理图像的相同技巧。我用mixin来回答这个问题:
.bg-img(@img-name,@color:"black"){
@base-path:~"./images/@{color}/";
background-image: url("@{base-path}@{img-name}");
}
然后你可以使用:
.px{
.bg-img("dot.png");
}
或
.px{
.bg-img("dot.png","red");
}
答案 3 :(得分:8)
对于transform: rotate(45deg)
中unit(value, suffix)
之类的类似字符串的单位值,请使用// Mixin
.rotate(@deg) {
@rotation: unit(@deg, deg);
-ms-transform: rotate(@rotation);
transform: rotate(@rotation);
}
// Usage
.rotate(45);
// Output
-ms-transform: rotate(45deg);
transform: rotate(45deg);
函数。
示例:
type EnterHook = (nextState: RouterState, replaceState: RedirectFunction, callback?: Function) => any;
type RedirectFunction = (state: ?LocationState, pathname: Pathname | Path, query: ?Query) => void;
答案 4 :(得分:7)
答案 5 :(得分:-7)
使用Drupal 7.我使用普通加号并且它正在工作:
@images_path+'bg.png'