官方文档 Cesium.color

颜色全透明

  1. new Cesium.Color(0, 0, 0, 0.5)
  • 如果 Cesium.LabelGraphics 对象,只改变字体颜色的透明度,而不关心原来是啥颜色,可以这样设置。通过 getValue 方法获取颜色,返回的就是 Cesium.Color 对象。但请看第 6 行则可以直接设置,这是因为 undergroundColor 返回的就是 Cesium.Color 对象
    1. // 设置字体填充透明度
    2. label.fillColor = label.fillColor.getValue().withAlpha(a0.5);
    3. // 设置字体外边框透明度
    4. label.outlineColor= label.outlineColor.getValue().withAlpha(a0.5);
    5. // 设置球地下颜色的透明度
    6. globe.viewer.scene.globe.undergroundColor.withAlpha(0.5)

    CSS 颜色值转换

    1. Cesium.Color.fromCssColorString('#ff0000')
    参考文章