16. QML利用DropShadow自定义悬浮按钮

2024-02-05 18:04

本文主要是介绍16. QML利用DropShadow自定义悬浮按钮,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1. 说明

一般情况下,QML提供的按钮控件的外观效果比较单一,如果想要做出带有空间感的效果,需要自己定义组件实现。本篇博客记录两种效果的空间感按钮,主要借助阴影达到想要的效果。
效果展示:
在这里插入图片描述

2. 主要代码:

第一种:

import QtQuick 2.0
import QtGraphicalEffects 1.0//自定义阴影按钮,阴影不可跳动
Item {id : shadowButtonwidth: 100height: 50signal clicked();Rectangle {id : bgrect;y : 20x : 1color: Qt.rgba(0.9,0.9,0.9,1)width: shadowButton.width-2;height: shadowButton.height-25radius: height/2}DropShadow {id : shadowanchors.fill: bgrecthorizontalOffset: 2verticalOffset: 12radius: 8.0samples: 17color: Qt.rgba(0.3,0.3,0.3,0.7)source: bgrect}Rectangle{id : toprectcolor: Qt.rgba(0.9,0.9,0.9,1)width: shadowButton.width;height: shadowButton.height-2radius: height/3MouseArea {id: mouseAreaanchors.fill: parenthoverEnabled : trueonClicked: {animation.start();shadowButton.clicked();}onEntered: {toprect.color = Qt.rgba(0.7,0.7,0.7,1)bgrect.color = Qt.rgba(0.95,0.95,0.95,1)shadowText.color = "white"}onExited: {toprect.color = Qt.rgba(0.9,0.9,0.9,1)bgrect.color = Qt.rgba(0.9,0.9,0.9,1)shadowText.color = Qt.rgba(0.3,0.3,0.3,1)}}}Text {id: shadowTextanchors.centerIn: toprecttext: qsTr("click")color: Qt.rgba(0.3,0.3,0.3,1)font.pixelSize : toprect.height/2}SequentialAnimation {id : animationNumberAnimation {target: toprect;property: "y";to: toprect.x+2;duration: 50}NumberAnimation {target: toprect;property: "y";to: toprect.x-2;duration: 50}}}

第二种:

import QtQuick 2.0
import QtGraphicalEffects 1.0
//自定义阴影按钮,阴影可跳动
Item {id : shadowButtonwidth: 100height: 50signal clicked();Rectangle{id : toprectcolor: Qt.rgba(0.9,0.9,0.9,1)width: shadowButton.width;height: shadowButton.height-2radius: height/4MouseArea {id: mouseAreaanchors.fill: parenthoverEnabled : trueonClicked: {animation.start();shadowButton.clicked();}onEntered: {toprect.color = Qt.rgba(0.7,0.7,0.7,1)shadowText.color = "white"}onExited: {toprect.color = Qt.rgba(0.9,0.9,0.9,1)shadowText.color = Qt.rgba(0.3,0.3,0.3,1)}}}DropShadow {id : shadowanchors.fill: toprecthorizontalOffset: 1verticalOffset: 10radius: 8.0samples: 17color: Qt.rgba(0.3,0.3,0.3,0.7)source: toprect}Text {id: shadowTextanchors.centerIn: toprecttext: qsTr("click")color: Qt.rgba(0.3,0.3,0.3,1)font.pixelSize : toprect.height/2}SequentialAnimation {id : animationParallelAnimation {NumberAnimation {target: toprect;property: "y";to: toprect.x+2;duration: 50}NumberAnimation {target: shadowproperty: "scale"to:0.95duration: 50}}ParallelAnimation {NumberAnimation {target: toprect;property: "y";to: toprect.x-2;duration: 50}NumberAnimation {target: shadowproperty: "scale"to:1.0duration: 50}}}
}

这篇关于16. QML利用DropShadow自定义悬浮按钮的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

SpringBoot 自定义消息转换器使用详解

《SpringBoot自定义消息转换器使用详解》本文详细介绍了SpringBoot消息转换器的知识,并通过案例操作演示了如何进行自定义消息转换器的定制开发和使用,感兴趣的朋友一起看看吧... 目录一、前言二、SpringBoot 内容协商介绍2.1 什么是内容协商2.2 内容协商机制深入理解2.2.1 内容

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

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

自定义类型:结构体(续)

目录 一. 结构体的内存对齐 1.1 为什么存在内存对齐? 1.2 修改默认对齐数 二. 结构体传参 三. 结构体实现位段 一. 结构体的内存对齐 在前面的文章里我们已经讲过一部分的内存对齐的知识,并举出了两个例子,我们再举出两个例子继续说明: struct S3{double a;int b;char c;};int mian(){printf("%zd\n",s

Spring 源码解读:自定义实现Bean定义的注册与解析

引言 在Spring框架中,Bean的注册与解析是整个依赖注入流程的核心步骤。通过Bean定义,Spring容器知道如何创建、配置和管理每个Bean实例。本篇文章将通过实现一个简化版的Bean定义注册与解析机制,帮助你理解Spring框架背后的设计逻辑。我们还将对比Spring中的BeanDefinition和BeanDefinitionRegistry,以全面掌握Bean注册和解析的核心原理。

Oracle type (自定义类型的使用)

oracle - type   type定义: oracle中自定义数据类型 oracle中有基本的数据类型,如number,varchar2,date,numeric,float....但有时候我们需要特殊的格式, 如将name定义为(firstname,lastname)的形式,我们想把这个作为一个表的一列看待,这时候就要我们自己定义一个数据类型 格式 :create or repla

【JavaScript】LeetCode:16-20

文章目录 16 无重复字符的最长字串17 找到字符串中所有字母异位词18 和为K的子数组19 滑动窗口最大值20 最小覆盖字串 16 无重复字符的最长字串 滑动窗口 + 哈希表这里用哈希集合Set()实现。左指针i,右指针j,从头遍历数组,若j指针指向的元素不在set中,则加入该元素,否则更新结果res,删除集合中i指针指向的元素,进入下一轮循环。 /*** @param

C# 防止按钮botton重复“点击”的方法

在使用C#的按钮控件的时候,经常我们想如果出现了多次点击的时候只让其在执行的时候只响应一次。这个时候很多人可能会想到使用Enable=false, 但是实际情况是还是会被多次触发,因为C#采用的是消息队列机制,这个时候我们只需要在Enable = true 之前加一句 Application.DoEvents();就能达到防止重复点击的问题。 private void btnGenerateSh

HTML5自定义属性对象Dataset

原文转自HTML5自定义属性对象Dataset简介 一、html5 自定义属性介绍 之前翻译的“你必须知道的28个HTML5特征、窍门和技术”一文中对于HTML5中自定义合法属性data-已经做过些介绍,就是在HTML5中我们可以使用data-前缀设置我们需要的自定义属性,来进行一些数据的存放,例如我们要在一个文字按钮上存放相对应的id: <a href="javascript:" d

一步一步将PlantUML类图导出为自定义格式的XMI文件

一步一步将PlantUML类图导出为自定义格式的XMI文件 说明: 首次发表日期:2024-09-08PlantUML官网: https://plantuml.com/zh/PlantUML命令行文档: https://plantuml.com/zh/command-line#6a26f548831e6a8cPlantUML XMI文档: https://plantuml.com/zh/xmi

qml states 状态

states 状态 在QML中,states用于定义对象在不同状态下的属性变化。每个状态可以包含一组属性设置,当状态改变时,这些属性设置会被应用到对象上。 import QtQuick 2.15import QtQuick.Controls 2.15// 定义应用程序的主窗口ApplicationWindow {visible: true // 使窗口可见width: 640 /