代码拉取完成,页面将自动刷新
同步操作将从 韦东山/Qtmxapp-desktop 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
import QtQuick 2.0
import QtQuick.Controls 2.0
import QtQuick.Layouts 1.3
Image {
id: hBtn
source:"images/wvga/home/home.png"
signal clicked()
property bool clickable : true
property int duration: 250
property int glowRadius: 50
property alias label: label
property alias text: label.text
MouseArea{
anchors.fill: parent
onClicked: {
if(hBtn.clickable){
hBtn.clicked()
}
}
onPressed: {
if(hBtn.clickable){
glow.visible = true
animation1.start()
animation2.start()
}
}
}
Rectangle{
id:glow
anchors.centerIn: parent
visible: false
width: hBtn.glowRadius*2
height: hBtn.glowRadius*2
color:"#00000000"
radius: hBtn.glowRadius
scale:1.05
border.color: "white"
}
Label{
id:label
// x:292
// y:252
text:qsTr("Label")
anchors.horizontalCenter: parent.horizontalCenter
anchors.top: parent.bottom
color:"#443224"
font.pixelSize: 28
}
PropertyAnimation{
target:glow
id:animation1
duration: hBtn.duration
loops:1
from:1.05
to:1.2
property:"scale"
}
ParallelAnimation{
id:animation2
SequentialAnimation{
PropertyAnimation{
target: glow
duration: hBtn.duration
loops:1
from:0.2
to:1.0
property:"opacity"
}
PropertyAnimation{
target: glow
duration:hBtn.duration
loops:1
from:1.0
to:0
property:"opacity"
}
PropertyAction {
target: glow; property: "visible"; value:false }
}
SequentialAnimation {
PropertyAction {
target: glow
property: "border.width"
value: 6
}
PauseAnimation {
duration: 200
}
PropertyAnimation {
target: glow
duration: hBtn.duration
loops: 1
from: 6
to: 3
property: "border.width"
}
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。