press-pix
Version:
基于 PixUI 的 Press 组件库
14 lines (13 loc) • 669 B
text/less
// 国际静态资源多语言切换,picDist为资源路径
// 举例:原图片链接为https://image-1251917893.file.myqcloud.com/os-pubgm/en/pix/user/popup-line.png,那么bgUrl('user/popup-line.png')
.bgUrl(@picDist) {
// 默认海外:无 lang-zh 类时使用海外资源
background-image: url(~"https://cdn.partner.esports.pubgmobile.com/os-pubgm/en/pix/@{picDist}");
background-position: center center;
background-repeat: no-repeat;
background-size: 100% 100%;
// 国内:当父节点有对应语言类时使用国内资源
.lang-zh & {
background-image: url(~"https://image-1251917893.file.myqcloud.com/os-pubgm/zh/pix/@{picDist}");
}
}