main
朱子楚\zhuzi 2023-04-11 23:39:20 +08:00
parent 5ea3cb1054
commit 1df3b4ba96
2 changed files with 22 additions and 5 deletions

View File

@ -69,8 +69,7 @@ FluWindow {
text:"https://github.com/zhuzichu520/FluentUI" text:"https://github.com/zhuzichu520/FluentUI"
Layout.alignment: Qt.AlignBottom Layout.alignment: Qt.AlignBottom
onClicked: { onClicked: {
console.debug(window.width) Qt.openUrlExternally(text_hublink.text)
// Qt.openUrlExternally(text_hublink.text)
} }
} }
} }

View File

@ -467,11 +467,17 @@ Item {
iconSize: 15 iconSize: 15
Layout.preferredWidth: 40 Layout.preferredWidth: 40
Layout.preferredHeight: 40 Layout.preferredHeight: 40
visible: d.isMinimal visible: opacity
opacity: d.isMinimal
Layout.alignment: Qt.AlignVCenter Layout.alignment: Qt.AlignVCenter
onClicked: { onClicked: {
d.enableNavigationPanel = !d.enableNavigationPanel d.enableNavigationPanel = !d.enableNavigationPanel
} }
Behavior on opacity{
NumberAnimation{
duration: 220
}
}
} }
Image{ Image{
id:image_logo id:image_logo
@ -582,16 +588,28 @@ Item {
id:loader_auto_suggest_box id:loader_auto_suggest_box
anchors.centerIn: parent anchors.centerIn: parent
sourceComponent: autoSuggestBox sourceComponent: autoSuggestBox
visible: { opacity: {
if(d.isCompactAndNotPanel){ if(d.isCompactAndNotPanel){
return false return false
} }
return true return true
} }
visible: opacity
Behavior on opacity{
NumberAnimation{
duration: 100
}
}
} }
FluIconButton{ FluIconButton{
visible:d.isCompactAndNotPanel visible:opacity
opacity:d.isCompactAndNotPanel
Behavior on opacity{
NumberAnimation{
duration: 220
}
}
hoverColor: FluTheme.dark ? Qt.rgba(1,1,1,0.03) : Qt.rgba(0,0,0,0.03) hoverColor: FluTheme.dark ? Qt.rgba(1,1,1,0.03) : Qt.rgba(0,0,0,0.03)
pressedColor: FluTheme.dark ? Qt.rgba(1,1,1,0.03) : Qt.rgba(0,0,0,0.03) pressedColor: FluTheme.dark ? Qt.rgba(1,1,1,0.03) : Qt.rgba(0,0,0,0.03)
normalColor: FluTheme.dark ? Qt.rgba(0,0,0,0) : Qt.rgba(0,0,0,0) normalColor: FluTheme.dark ? Qt.rgba(0,0,0,0) : Qt.rgba(0,0,0,0)