代码拉取完成,页面将自动刷新
同步操作将从 PyQt5/CustomWidgets 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Created on 2019年7月31日
@author: Irony
@site: https://pyqt5.com https://github.com/892768447
@email: 892768447@qq.com
@file: TestCCountUp
@description:
"""
from PyQt5.QtCore import Qt
from PyQt5.QtWidgets import QWidget, QVBoxLayout, QLabel, QHBoxLayout,\
QPushButton
from CustomWidgets.CCountUp import CCountUp
__Author__ = 'Irony'
__Copyright__ = 'Copyright (c) 2019 Irony'
__Version__ = 1.0
Style = """
QLabel, QPushButton {
font-family: Helvetica Neue,Helvetica,PingFang SC,Hiragino Sans GB,Microsoft YaHei,"\5FAE\8F6F\96C5\9ED1",Arial,sans-serif;
font-size: 14px;
}
QPushButton {
font-size: 12px;
}
CCountUp {
font-size: 24px;
}
"""
class Window(QWidget):
def __init__(self, *args, **kwargs):
super(Window, self).__init__(*args, **kwargs)
self.setStyleSheet(Style)
layout = QVBoxLayout(self)
layout.addWidget(QLabel('目标值:1234,持续时间:6秒', self))
self.countLabel = CCountUp(self)
self.countLabel.setAlignment(Qt.AlignCenter)
self.countLabel.setMinimumSize(100, 100)
self.countLabel.setDuration(6000) # 动画时间 6 秒
layout.addWidget(self.countLabel)
cw = QWidget(self)
layout.addWidget(cw)
layoutc = QHBoxLayout(cw)
layoutc.addWidget(QPushButton(
'开始', cw, clicked=lambda: self.countLabel.setNum(1234)))
layoutc.addWidget(QPushButton('重置', cw, clicked=self.countLabel.reset))
layoutc.addWidget(QPushButton('暂停/继续', cw, clicked=self.doContinue))
layoutc.addWidget(QPushButton(
'开始负小数-1234.00', cw, clicked=lambda: self.countLabel.setNum(-1234.00)))
def doContinue(self):
if self.countLabel.isPaused():
self.countLabel.resume()
else:
self.countLabel.pause()
if __name__ == '__main__':
import sys
from PyQt5.QtWidgets import QApplication
app = QApplication(sys.argv)
w = Window()
w.show()
sys.exit(app.exec_())
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。