scss 用于SCSS的Retina Mixin
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了scss 用于SCSS的Retina Mixin相关的知识,希望对你有一定的参考价值。
// Retina
$retina: "only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx)";
@mixin retina-background-image($file, $type, $width, $height) {
background-image: url($file + '.' + $type);
background-size: $width $height;
@media #{$retina} {
background-image: url($file + '@2x.' + $type);
}
}
以上是关于scss 用于SCSS的Retina Mixin的主要内容,如果未能解决你的问题,请参考以下文章
scss 用于项目Mixin零件的SASS样板
scss 方便的sass mixin用于媒体查询
scss 用于CSS属性的REM Mixin
scss Mixin用于占位符
scss mixin用于缓动动画
scss Mixin用于样式形式占位符