PySide6 给按键添加一个鼠标滑过变大的效果
时间: 2024-04-30 13:23:05 浏览: 274
源代码疯狂刷题软件python版 - 使用PySide6自制刷题软件
5星 · 资源好评率100%
要在 PySide6 中为按键添加鼠标滑过变大的效果,可以使用样式表。以下是一个示例代码,其中按键的样式表使用了 hover 伪状态来实现鼠标滑过变大的效果:
```python
from PySide6.QtWidgets import QApplication, QPushButton
from PySide6.QtGui import QFont
from PySide6.QtCore import QSize
app = QApplication([])
button = QPushButton('Click me!')
button.setFont(QFont('Arial', 20))
button.setStyleSheet('''
QPushButton {
background-color: #4CAF50;
border: none;
color: white;
padding: 10px 20px;
font-size: 16px;
border-radius: 5px;
}
QPushButton:hover {
background-color: #3e8e41;
font-size: 18px;
}
''')
button.show()
app.exec()
```
在这个示例中,我们使用了 `QPushButton:hover` 样式表来设置鼠标滑过时按钮的背景颜色和字体大小。要调整按钮的大小,可以在样式表中使用 `width` 和 `height` 属性。
阅读全文