我正在尝试使用retinajs.com的retina-1.1.0.less代码。它不起作用,因为背景图像根本没有出现。
这是html:
<head>
<link rel="stylesheet/less" href="../../scripts/retina-1.1.0.less" type="text/css" />
</head>
这是retina.less:
// retina.less
// A helper mixin for applying high-resolution background images (http://www.retinajs.com)
@highdpi: ~"(-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-resolution: 1.5dppx)";
.at2x(@path, @w: auto, @h: auto) {
background-image: url(@path);
@at2x_path: ~`@{path}.replace(/\.\w+$/, function(match) { return "@2x" + match; })`;
@media @highdpi {
background-image: url("@{at2x_path}");
background-size: @w @h;
}
}
#button {
.at2x('images/button.png');
}
这是CSS(我认为这不重要):
#button {
height: 50px;
width: 50px;
float: left;
margin-right: 10px;
}
button.png
和button@2x.png
都在images文件夹中。
我想我可能没有正确链接到LESS文件,但我不知道如何解决它。
由于
答案 0 :(得分:0)
问题在于没有LESS编译器脚本(如七阶段最大值所示)。
以下是对html的修复:
<head>
<link rel="stylesheet/less" href="../../scripts/retina-1.1.0.less" type="text/css" />
<script src="//cdnjs.cloudflare.com/ajax/libs/less.js/1.7.0/less.min.js" ></script>
</head>