Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试创建一个拇指透明的滑块。这里的想法是,我想要一个带有一些标签和图标的滑块。当我的滑块(拇指)出现在标签/图标之上时,标签/图标通过滑块的拇指可见。
可能我必须使用css或其他方式吗?我不确定如何实际实现它。我附上了我想要实现的图像。
请帮忙。
您可以为滑块设置不透明度,它将使其透明...javafx 每个控件都有一个不透明度属性...您可以使用它
像这样
Slider sb = new Slider(); sb.setOpacity(0.25);