我正在尝试使用LESS CSS和RetinaJs将背景图像制作成视网膜图像:
在我的index.html文件中:
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
[...]
<link type="text/css" rel="stylesheet/less" href="resources/css/retina.less">
<script type="text/javascript" src="resources/js/less-1.3.0.minjs" ></script>
[...]
</head>
<body>
[...]
<script type="text/javascript" src="resources/js/retina.js"></script>
</body>
</html>
在我的retina.less文件中:
.at2x(@path, @w: auto, @h: auto) {
background-image: url("@{path}");
@at2x_path: ~`"@{path}".split('.').slice(0, "@{path}".split('.').length - 1).join(".") + "@2x" + "." + "@{path}".split('.')["@{path}".split('.').length - 1]`;
@media all and (-webkit-min-device-pixel-ratio : 1.5) {
background-image: url("@{at2x_path}");
background-size: @w @h;
}
}
.topMenu {
.at2x('../../resources/img/topMenuTitle.png');
}
我在同一个文件夹中同时有topMenuTitle.png(320px x 40px)和topMenuTitle@2x.png(640px x 80px)。
测试此代码时:
有什么建议吗?感谢。
答案 0 :(得分:1)
较新版本的retina.less
解决了这个问题:
您需要更换
background-image: url(@path);
带
background-image: url("@{path}");
或者这不会在iOS上编译