ホームページ  >  記事  >  ウェブフロントエンド  >  変数を使用して LESS でプロパティ名を動的に作成するにはどうすればよいですか?

変数を使用して LESS でプロパティ名を動的に作成するにはどうすればよいですか?

Barbara Streisand
Barbara Streisandオリジナル
2024-11-14 21:59:02848ブラウズ

How can I use variables to dynamically create property names in LESS?

Using variables in property names in LESS (dynamic properties / property name interpolation)

LESS doesn't currently support dynamically inserted properties, despite some discussions on the topic on Stack Overflow.

Workaround #1: Inject Dynamically Generated Properties into Property Value

This workaround injects dynamically created properties into a hard-coded property value:

.vendors(@property, @value, @pre: ect) {
  -inj:~"@{pre}; -webkit-@{property}: @{value}; -moz-@{property}: @{value}; -ms-@{property}: @{value}; -o-@{property}: @{value}; @{property}: @{value}";
}

Workaround #2: Inject Dynamically Generated Properties into the Name of the Following Class (LESS < 1.4.0)

This workaround constructs a virtual class or ruleset that includes the vendors and recursively builds the next class:

.vendors(@property, @value, @rest:&quot;&quot;) {
  @inject:~&quot;@{rest} -webkit-@{property}: @{value}; -moz-@{property}: @{value}; -ms-@{property}: @{value}; -o-@{property}: @{value}; @{property}: @{value};&quot;;
}

.test(@nextclass){
  .vendors(transform, &quot;matrix(2,0,0,2,20,20)&quot;);
  .vendors(transform-origin,&quot;10px 10px&quot;, @inject);
  (~&quot;{@{inject}} .@{nextclass}&quot;){/*next class properties*/};
}

Workaround #3: Inject Dynamically Generated Properties into the Name of the Following Class (LESS 1.4.0+)

This version uses recursion to overcome limitations in LESS 1.4.0:

@nl: `&quot;\n\t&quot;`;

.multi(@props,@vals,@i,@inj) {
  @property: extract(@props, 1);
  @value: extract(@vals, 1);
  @inject:~&quot;@{inj}@{nl}-webkit-@{property}: @{value};@{nl}-moz-@{property}: @{value};@{nl}-ms-@{property}: @{value};@{nl}-o-@{property}: @{value};@{nl}@{property}: @{value};&quot;;
}

.multi(@props,@vals,@i,@inj:&quot;&quot;) when (@i &gt; 0) {
  @property: extract(@props, @i);
  @value: extract(@vals, @i);
  @injnext:~&quot;@{inj}@{nl}-webkit-@{property}: @{value};@{nl}-moz-@{property}: @{value};@{nl}-ms-@{property}: @{value};@{nl}-o-@{property}: @{value};@{nl}@{property}: @{value};&quot;;
  .multi(@props,@vals,(@i - 1),@injnext);
}

In LESS versions 1.6 and above, property name interpolation is implemented natively, so no workarounds are needed.

以上が変数を使用して LESS でプロパティ名を動的に作成するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。