我不是 100% 清楚如何为仅移动视图实现与桌面视图不同的图像
例如,如果我有这个桌面图像:
&.card {
.card-image {
@include background-helper('gallery/old-pic.jpg', center, contain, no-repeat);
}
}
它来自我有以下代码的mixin文件:
@mixin background-helper($image: false, $position: center, $size: contain, $repeat: no-repeat){
@if $image {
background-image: asset-url($image);
background-repeat: $repeat;
background-size: $size;
background-position: $position;
}
}
不知道添加什么逻辑会告诉我的应用程序呈现一些东西,而不是old-pic.jpg
用户在手机上查看它。