PyQt5 – 如何制作半透明的标签
在设计GUI(图形用户界面)应用程序时,我们倾向于制作很多标签,但有时一些标签会相互重叠,只有在上面的标签是可见的,这就是为什么需要半透明标签。
普通标签与半透明标签 –
为了创建半透明标签,可以使用setStyleSheet()方法。
语法: label.setStyleSheet(“background-color: rgba(255, 255, 255, 10);”)
这里我们使用RGBA即透明度系数来设置颜色,255是完全不透明的,而alpha为0是完全透明的。
参数: 它接受字符串作为参数。
执行的动作: 它使标签的颜色透明。
代码。
# importing the required libraries
from PyQt5.QtWidgets import *
from PyQt5.QtGui import *
import sys
class Window(QMainWindow):
def __init__(self):
super().__init__()
# set the title
self.setWindowTitle("Label")
# setting the geometry of window
self.setGeometry(0, 0, 400, 300)
# creating a label widget
# by default label will display at top left corner
self.label_1 = QLabel('back', self)
# moving position
self.label_1.move(100, 100)
# setting up border and background color
self.label_1.setStyleSheet("background-color: lightgreen;
border: 3px solid green")
# creating a label widget
# by default label will display at top left corner
self.label_2 = QLabel('front', self)
# moving position
self.label_2.move(140, 100)
# setting up border and background
# color with transparency factor
self.label_2.setStyleSheet("border: 3px solid blue;
background-color: rgba(0, 255, 255, 90);")
# show all the widgets
self.show()
# create pyqt5 app
App = QApplication(sys.argv)
# create the instance of our Window
window = Window()
# start the app
sys.exit(App.exec())
输出 :