I have k children of class tab_title
, I want to gradually paint their background from color1
to color2
.
For example: If k=3, color1=red(#FF0000), color2=yellow(#FFFF00) then the background for the 1st element is red(#FF0000), for the 2nd orange(#FF8000) and for the 3rd is yellow(#FFFF00); k=5, color1=white, color2=black then 1st is white, 2nd is gray25%, 3rd is gary50%, 4th is gary75% and 5th is black.
I want this to work for any k
, without specifying explicitly the tone for each nth-child()
. Any way of doing this purely with css or sass? since class can be added or removed, I would prefer not involving any JS code.
I am using the following code:
@mixin gradbg($n, $c1, $c2){
@for $i from 1 through $n {
&:nth-child(#{$i}) {
background-color: mix($c1,$c2,((1 - (($i - 1) / ($n - 1)))*100%));
}
}
}
and then
li.tab_title{
$from: #097380;
$to: #4da759;
@include gradbg(3,$from,$to);
}
the only thing missing is somehow counting k
automatically so I can use gradbg(k,$from,$to)
instead of gradbg(3,$from,$to)
Thanks a lot,
Guy
I have done it for hardcoded array values, may be you cn tweak the logic and make a recursive function to get it.