当前位置: 首页 > news >正文

东莞网站建设是什么意思大淘客构建自己的网站

东莞网站建设是什么意思,大淘客构建自己的网站,成都职业培训网络学院,深圳设计网站哪个好文章目录 一#xff0e;前言二#xff0e;预览三#xff0e;软件开发心得1.使用方法2.UI设计3.代码架构4.项目结构 四#xff0e;代码片段分享1.图片平滑缩放组件2.滚动日志组件 五#xff0e;心得体会 大小#xff1a;35.0 M#xff0c;软件安装包放在了这里! 本软件未… 文章目录 一前言二预览三软件开发心得1.使用方法2.UI设计3.代码架构4.项目结构 四代码片段分享1.图片平滑缩放组件2.滚动日志组件 五心得体会 大小35.0 M软件安装包放在了这里! 本软件未使用web相关技术无嵌套浏览器 一前言 今天又来和大家分享我开发的PyQt5大屏可视化方案了本次和大家分享一款XX产业大数据指挥舱可视化方案。 二预览 下面我将截图展示一下本次系统的主要功能 本次软件只有一屏下面截图为软件主界面 三软件开发心得 1.使用方法 双击安装包点下一步进行安装双击打开软件即可进入软件主界面软件默认是全屏的大家可以按下ESC退出。 2.UI设计 本次UI采用图片文字的方式软件整体布局为垂直布局内部为水平布局通过将主体内容占比增大的方式凸出主体内容通过绘制组件实现了组件的重写主屏增加了盘旋的无人机增加了软件的灵巧性软件内部有多个模块病虫害预警、统计数据、硬件设备、灌溉数据、日志模块…每一部分都是单独设计的简而言之就是每个模块都可以单独调试避免了整体测试的时间浪费。软件整体颜色采用深色背景、亮色文字的方案更直观地凸出主体。本次软件实现为代码实现无设计师请读者不要和笔者询问.ui文件。 3.代码架构 源代码文件夹包含多个.py文件每个文件的互相调用逻辑见下图 4.项目结构 以下为本项目的代码结构主要源代码在src目录下目录下分资源、配置、组件包。 四代码片段分享 1.图片平滑缩放组件 软开主屏中的“太阳”就是这个组件实现的 class ImageResizerLabel(QLabel):def __init__(self, parentNone):super().__init__(parent)# Initialize scaling factors and original imageself.original_pixmap None# Set the fixed minimum size of the label (75x75)self.min_size 75self.max_size 90# Set up a timer for smooth scaling effectself.timer QTimer(self)self.timer.timeout.connect(self.resize_image)self.timer.start(30) # 30ms interval for smooth transition# Initial fixed size for the label (75x75)self.setFixedSize(self.min_size, self.min_size)# Initialize scale factor and flagself.current_size self.min_sizeself.scaling_up Truedef load_image(self, image_path):Load an image into the labelself.original_pixmap QPixmap(image_path)if self.original_pixmap:self.update_image_size() # Ensure image is resized to fit label sizedef update_image(self, image_path):Update the image data (called externally to update the image)if self.original_pixmap:self.original_pixmap QPixmap(image_path)self.current_size self.min_size # Reset to the minimum sizeself.scaling_up True # Start scaling up againself.update_image_size() # Update the image size after the updatedef resize_image(self):Resize the image smoothlyif self.original_pixmap:if self.scaling_up:self.current_size 0.5 # Increase size gradually (0.5 units per step)if self.current_size self.max_size: # Reached the max size (100)self.scaling_up False # Start scaling downelse:self.current_size - 0.5 # Decrease size gradually (0.5 units per step)if self.current_size self.min_size: # Back to the original size (75)self.scaling_up True # Start scaling up# Adjust the label size to match the current sizeself.setFixedSize(self.current_size, self.current_size)# Scale the image to fit the label sizescaled_pixmap self.original_pixmap.scaled(self.current_size, self.current_size, Qt.KeepAspectRatio, Qt.SmoothTransformation)# Update the pixmapself.setPixmap(scaled_pixmap)def update_image_size(self):Update the size of the label based on the image sizeif self.original_pixmap:# Adjust the size of the image while maintaining aspect ratioscaled_pixmap self.original_pixmap.scaled(self.current_size, self.current_size, Qt.KeepAspectRatio, Qt.SmoothTransformation)self.setPixmap(scaled_pixmap)def resizeEvent(self, event):Handle window resize events to resize the image proportionallyself.update_image_size() # Update the image size whenever the widget is resizedsuper().resizeEvent(event) # Call the base class method to handle the default behavior 2.滚动日志组件 这个组件用于滚动显示日志 class ScrollingMessageWidget(QWidget):def __init__(self, parentNone, messages[]):super().__init__(parent)self.messages messages # 初始化中奖信息列表self.message_labels [] # 保存所有 QLabelself.current_offset 0 # 当前滚动偏移量self.init_ui()self.start_scrolling()def init_ui(self):初始化UI组件# 窗口设置self.setStyleSheet(background-color: transparent;)# 垂直布局self.layout QVBoxLayout(self)self.layout.setSpacing(0)self.layout.setContentsMargins(0, 0, 0, 0)# 设置字体样式font QFont(Arial, 7, QFont.Bold)font.setBold(True)# 创建 QLabel 并添加到布局中self.create_labels(font)def create_labels(self, font):根据当前消息列表创建 QLabel# 清空原有标签for label in self.message_labels:self.layout.removeWidget(label)label.deleteLater()self.message_labels.clear()# 创建新的标签for message in self.messages:label QLabel(message, self)label.setAlignment(Qt.AlignCenter)label.setFont(font)label.setStyleSheet(color: rgb(201,206,211);)self.layout.addWidget(label)self.message_labels.append(label)# 首尾相接复制消息以实现循环效果for message in self.messages:label QLabel(message, self)label.setAlignment(Qt.AlignCenter)label.setFont(font)label.setStyleSheet(color: rgb(201,206,211);)self.layout.addWidget(label)self.message_labels.append(label)def start_scrolling(self):启动滚动定时器self.timer QTimer(self)self.timer.timeout.connect(self.scroll)self.timer.start(10) # 每 5 毫秒更新一次def scroll(self):滚动消息# 滚动偏移量递增self.current_offset 1# 检查是否需要重置偏移量if self.current_offset self.message_labels[0].height():self.current_offset 0# 将第一个 QLabel 移动到最后label self.message_labels.pop(0)self.layout.removeWidget(label)self.layout.addWidget(label)self.message_labels.append(label)# 更新每个 QLabel 的位置for i, label in enumerate(self.message_labels):label.move(0, (i - 1) * label.height() - self.current_offset)def update_messages(self, new_messages):更新中奖信息并刷新显示:param new_messages: 新的中奖信息列表self.messages new_messagesself.current_offset 0 # 重置滚动偏移量self.create_labels(QFont(微软雅黑, 7, QFont.Bold)) # 重新创建标签 五心得体会 本次和大家分享了我的大屏可视化方案软件完全是使用PyQt5实现的与大家分享了我的软件开发心得与软件代码项目结构还有我的代码片段希望大家亲自下载体验一下软件更希望得到大家的反馈
http://www.hkea.cn/news/14527466/

相关文章:

  • 电子商务网站建设新手房屋建筑图纸设计
  • 跑腿网站建设网络科技公司起名大全参考
  • 兰州网站外包西安广告设计与制作公司
  • ftp网站建立竞猜网站开发多少钱
  • 网站制作培训课程怎么做汽车网站
  • 昆明seocn整站优化杭州哪家网站建设公司好
  • 襄阳网站建设哪个好成都展览展示有限公司
  • 北京网站案例现在找个网站这么难的吗
  • 网站建设公司客户开发手册在国外做购物网站
  • 电商在线设计网站自助建微网站
  • 河南网站建设网络公司微信网站建设方案
  • 外贸做的社交网站有哪些做汽车销售要了解的网站
  • 帮人做网站的公司广州公关公司排名
  • 网页页面设计报价网站关键词优化代理
  • 青海网站开发建设软件开发计划模板
  • 邮箱登陆嵌入网站app编程软件有哪些
  • 嘉兴网站托管网站建设需要的网络技术
  • 安全的赣州网站建设wordpress 企业站开发
  • 去年做哪些网站能致富免费个人简历模板网站
  • 手机网站怎么放到桌面上英文网站 建站
  • 做网站百度关键排名网站在线建站
  • 有哪些官方网站做的比较好宁河集团网站建设
  • 网站开发结束语盘锦网站建设公司
  • 学网站开发需要报培训机构吗杭州网站seo优化
  • 建设项目网站备案申请表青岛找网站建设公司哪家好
  • 北京公司建站模板自己做一元购网站
  • 网站服务器地址怎么查询河东网站建设
  • 浏阳网站建设公司对门户网站建设情况的报告
  • 可以自己做漫画的网站域名换了网站需要备案么
  • 安徽住房和城乡建设厅新网站世纪佳缘网站模板