Heim > Web-Frontend > CSS-Tutorial > Hauptteil

Wie kann ich Variablen verwenden, um Eigenschaftsnamen in LESS dynamisch zu erstellen?

Barbara Streisand
Freigeben: 2024-11-14 21:59:02
Original
853 Leute haben es durchsucht

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}";
}
Nach dem Login kopieren

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*/};
}
Nach dem Login kopieren

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);
}
Nach dem Login kopieren

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

Das obige ist der detaillierte Inhalt vonWie kann ich Variablen verwenden, um Eigenschaftsnamen in LESS dynamisch zu erstellen?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Neueste Artikel des Autors
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage