5. Cesium中的颜色

1. 文字

Cesium.Color.BLUE; // 蓝色
 
Cesium.Color.RED; // 红色
 
Cesium.Color.BLUE.withAlpha(0.5)// 添加透明度

2. rgba(a区间 0 - 1)


new Cesium.Color(0, 0, 255, 1);  // 蓝色
 
new Cesium.Color(255, 0, 0, 1);  //  红色

3. rgba(a区间 0 - 255)


new Cesium.Color(0, 0, 255, 255);  // 蓝色
 
new Cesium.Color(255, 0, 0, 255);  //  红色

4. Css颜色转Cesium颜色

Cesium.Color.fromCssColorString('#0000ff');  // 蓝色
Cesium.Color.fromCssColorString("rgba(0, 0, 255, 1)") // 蓝色
Cesium.Color.fromCssColorString('#ff0000');  // 红色
Cesium.Color.fromCssColorString("rgba(255, 0, 0, 1)");  // 红色

5. 随机颜色

Cesium.Color.fromRandom()

你可能感兴趣的:(Cesium,前端)