scss 1:Nで変数を管理するSCSS

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了scss 1:Nで変数を管理するSCSS相关的知识,希望对你有一定的参考价值。

$icons: (
    message:    (40, 40),
    philosophy: (50, 50),
    service:    (40, 40),
    place:      (40, 40),
    comapny:    (40, 40),
    csr:        (45, 45),
    news:       (40, 40),
    recruit:    (40, 40),
    contact:    (40, 40),
    policy:     (40, 40),
    sitemap:    (40, 40),
);

@each $name, $icon in $icons {

	$icon-width: nth($icon, 1);
	$icon-height: nth($icon, 2);

	&-#{$name} {
		background-image: url(../img/common/other/bg_#{$name}01.jpg);
		a:before {
			content: "";
			position: absolute;
			z-index: 1;
			display: block;
			background-image: url(../img/common/other/ico_#{$name}01@2x.png);
			background-size: cover;
			width: $icon-width+px;
			height: $icon-height+px;
			margin: 0 auto;
			left: 0;
			right: 0;
			top: 50px;
		}
	}
}

以上是关于scss 1:Nで変数を管理するSCSS的主要内容,如果未能解决你的问题,请参考以下文章

scss 1:1の管理(对于だと第nに変数を使えず怒られた)

scss 20180320 CSSで変数!

markdown RinRubyでR言语内の変数をRubyで参照する

c_cpp 自プロセスの环境変数を全て表示する

swift Swiftでは++が使えないので,その代わりに计数変数をカウントアップする关数で代用#minna_de_swift

scss Bootstrap 4 alphaで新たに追加されたSCSS変数ref:http://qiita.com/NaokiMatsuda/items/3f6a55ac1fe652269016