我有以下代码:
@color : #d14836;
.stripes span {
-webkit-background-size: 30px 30px;
-moz-background-size: 30px 30px;
background-size: 30px 30px;
background-image: -webkit-gradient(linear, left top, right bottom,
color-stop(.25, rgba(209, 72, 54, 1)), color-stop(.25, transparent),
color-stop(.5, transparent), color-stop(.5, rgba(209, 72, 54, 1)),
color-stop(.75, rgba(209, 72, 54, 1)), color-stop(.75, transparent),
to(transparent));
我需要转换@color
为rgba(209, 72, 54, 1)
。
因此,我需要rgba(209, 72, 54, 1)
在代码中替换为Less函数,该rgba()
函数根据@color
变量生成一个值。
如何用Less做到这一点?
3
淡入/淡出/淡入淡出功能是否不符合您的需要? lesscss.org/#reference
—
cimmanon