一文看明白QML输入框的动画制作Python PySide6 Qt6 QML LineEdit 输入框

2024-08-24 00:44

本文主要是介绍一文看明白QML输入框的动画制作Python PySide6 Qt6 QML LineEdit 输入框,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1. 前言

  • 本代码为扫地僧-smile原创, 废话不多说, 直接看效果图由于录制的这个GIF图掉帧严重, 实际动画效果非常细腻

    在这里插入图片描述

2.看代码

  • 控件模块代码如下 SmileLineEdit.qml
import QtQuick
import QtQuick.Controls/* __author__: 扫地僧-smile */Rectangle {// 属性property int titleFontPixel: 15property int tipsFontPixel: 15property string tipsFontFamily: "微软雅黑"property string tipsText: "WebSite"property int borderWidth: 2property string borderInColor: "#3F80EA"property string borderOutColor: "#757575"property string borderColor: borderOutColorproperty int borderRadius: 5property int contentFontPixel: 15property string contentFontFamily: "微软雅黑"property string contentFontColor: "#3C4043"property int contentPadding: 10property int animationTime: 200property int maskWidth: 60id: rootwidth: 300height: 50border { color: borderColor; width: borderWidth }radius: borderRadiusBehavior on width {PropertyAnimation { duration: animationTime }}Rectangle {id: maskWidgetheight: 2width: 0x: contentPaddingy: 0color: "#FFFFFFFF"Behavior on width {PropertyAnimation { duration: animationTime }}}Text {id: tipsWidgetx: contentPaddingy: 15text: tipsTextfont { family: tipsFontFamily; pixelSize: tipsFontPixel }color: borderColorscale: 1horizontalAlignment: Text.AlignHRightBehavior on y {PropertyAnimation { duration: 200 }}Behavior on scale {PropertyAnimation { duration: 200 }}}TextInput {id: contentWidgetanchors.fill: rootanchors.margins: contentPaddinganchors.leftMargin: contentPaddingverticalAlignment: TextInput.AlignVCentercolor: contentFontColorfont { family: contentFontFamily; pixelSize: contentFontPixel }onFocusChanged: {if (activeFocus) {borderColor = borderInColormaskWidget.width = maskWidthtipsWidget.y = -10tipsWidget.scale = 0.8root.width = 400} else {if (text === "") {maskWidget.width = 0tipsWidget.y = 15tipsWidget.scale = 1.0root.width = 300}borderColor = borderOutColor}}MouseArea {width: parent.widthheight: parent.heightz: -1anchors.fill: parenthoverEnabled: trueonEntered: {cursorShape = Qt.PointingHandCursor}onExited: {cursorShape = Qt.ArrowCursor}}}
}
  • 入口文件 main.qml
import QtQuick
import QtQuick.Controls
import QtQuick.LayoutsWindow {width: 800height: 500visible: truetitle: "smile qml"ColumnLayout {id: mainLayoutanchors.centerIn: parentspacing: 50SmileLineEdit {tipsText: "WebSite"}SmileLineEdit {tipsText: "电子邮箱"}}
}

这篇关于一文看明白QML输入框的动画制作Python PySide6 Qt6 QML LineEdit 输入框的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1100964

相关文章

python: 多模块(.py)中全局变量的导入

文章目录 global关键字可变类型和不可变类型数据的内存地址单模块(单个py文件)的全局变量示例总结 多模块(多个py文件)的全局变量from x import x导入全局变量示例 import x导入全局变量示例 总结 global关键字 global 的作用范围是模块(.py)级别: 当你在一个模块(文件)中使用 global 声明变量时,这个变量只在该模块的全局命名空

【前端学习】AntV G6-08 深入图形与图形分组、自定义节点、节点动画(下)

【课程链接】 AntV G6:深入图形与图形分组、自定义节点、节点动画(下)_哔哩哔哩_bilibili 本章十吾老师讲解了一个复杂的自定义节点中,应该怎样去计算和绘制图形,如何给一个图形制作不间断的动画,以及在鼠标事件之后产生动画。(有点难,需要好好理解) <!DOCTYPE html><html><head><meta charset="UTF-8"><title>06

【Python编程】Linux创建虚拟环境并配置与notebook相连接

1.创建 使用 venv 创建虚拟环境。例如,在当前目录下创建一个名为 myenv 的虚拟环境: python3 -m venv myenv 2.激活 激活虚拟环境使其成为当前终端会话的活动环境。运行: source myenv/bin/activate 3.与notebook连接 在虚拟环境中,使用 pip 安装 Jupyter 和 ipykernel: pip instal

【机器学习】高斯过程的基本概念和应用领域以及在python中的实例

引言 高斯过程(Gaussian Process,简称GP)是一种概率模型,用于描述一组随机变量的联合概率分布,其中任何一个有限维度的子集都具有高斯分布 文章目录 引言一、高斯过程1.1 基本定义1.1.1 随机过程1.1.2 高斯分布 1.2 高斯过程的特性1.2.1 联合高斯性1.2.2 均值函数1.2.3 协方差函数(或核函数) 1.3 核函数1.4 高斯过程回归(Gauss

【学习笔记】 陈强-机器学习-Python-Ch15 人工神经网络(1)sklearn

系列文章目录 监督学习:参数方法 【学习笔记】 陈强-机器学习-Python-Ch4 线性回归 【学习笔记】 陈强-机器学习-Python-Ch5 逻辑回归 【课后题练习】 陈强-机器学习-Python-Ch5 逻辑回归(SAheart.csv) 【学习笔记】 陈强-机器学习-Python-Ch6 多项逻辑回归 【学习笔记 及 课后题练习】 陈强-机器学习-Python-Ch7 判别分析 【学

nudepy,一个有趣的 Python 库!

更多资料获取 📚 个人网站:ipengtao.com 大家好,今天为大家分享一个有趣的 Python 库 - nudepy。 Github地址:https://github.com/hhatto/nude.py 在图像处理和计算机视觉应用中,检测图像中的不适当内容(例如裸露图像)是一个重要的任务。nudepy 是一个基于 Python 的库,专门用于检测图像中的不适当内容。该

Flutter 进阶:绘制加载动画

绘制加载动画:由小圆组成的大圆 1. 定义 LoadingScreen 类2. 实现 _LoadingScreenState 类3. 定义 LoadingPainter 类4. 总结 实现加载动画 我们需要定义两个类:LoadingScreen 和 LoadingPainter。LoadingScreen 负责控制动画的状态,而 LoadingPainter 则负责绘制动画。

pip-tools:打造可重复、可控的 Python 开发环境,解决依赖关系,让代码更稳定

在 Python 开发中,管理依赖关系是一项繁琐且容易出错的任务。手动更新依赖版本、处理冲突、确保一致性等等,都可能让开发者感到头疼。而 pip-tools 为开发者提供了一套稳定可靠的解决方案。 什么是 pip-tools? pip-tools 是一组命令行工具,旨在简化 Python 依赖关系的管理,确保项目环境的稳定性和可重复性。它主要包含两个核心工具:pip-compile 和 pip

HTML提交表单给python

python 代码 from flask import Flask, request, render_template, redirect, url_forapp = Flask(__name__)@app.route('/')def form():# 渲染表单页面return render_template('./index.html')@app.route('/submit_form',

用Unity2D制作一个人物,实现移动、跳起、人物静止和动起来时的动画:中(人物移动、跳起、静止动作)

上回我们学到创建一个地形和一个人物,今天我们实现一下人物实现移动和跳起,依次点击,我们准备创建一个C#文件 创建好我们点击进去,就会跳转到我们的Vision Studio,然后输入这些代码 using UnityEngine;public class Move : MonoBehaviour // 定义一个名为Move的类,继承自MonoBehaviour{private Rigidbo