0
我創建以下背景圖案:交替三角形彩色背景
https://codepen.io/anon/pen/JJvbjz
CSS:
body {
background:
linear-gradient(-120deg, transparent 63%, #fff 63%),
linear-gradient(120deg, transparent 63%, #fff 63%),
linear-gradient(to bottom, blue, blue);
background-size: 90px 50px;
background-repeat: repeat-x;
}
我想能夠交替三角形的顏色,例如紅,藍,綠,紅,藍,綠,紅,藍綠等等。
這絕對是天才!謝謝,瓦爾斯! – user2726041