From e55cf7483e98426dffe3bfff02805b27c9973a22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Sun, 8 Mar 2015 12:42:55 +0100 Subject: ksplash theme: Make all letters appear from the start --- .../share/apps/ksplash/Themes/Default/Preview.png | Bin 87143 -> 86777 bytes .../share/apps/ksplash/Themes/Default/main.qml | 24 +++++++++++---------- 2 files changed, 13 insertions(+), 11 deletions(-) diff --git a/kde4-profiles/common/share/apps/ksplash/Themes/Default/Preview.png b/kde4-profiles/common/share/apps/ksplash/Themes/Default/Preview.png index 1cf95dd..1c2ce98 100644 Binary files a/kde4-profiles/common/share/apps/ksplash/Themes/Default/Preview.png and b/kde4-profiles/common/share/apps/ksplash/Themes/Default/Preview.png differ diff --git a/kde4-profiles/common/share/apps/ksplash/Themes/Default/main.qml b/kde4-profiles/common/share/apps/ksplash/Themes/Default/main.qml index 0b69bcd..986c4b8 100644 --- a/kde4-profiles/common/share/apps/ksplash/Themes/Default/main.qml +++ b/kde4-profiles/common/share/apps/ksplash/Themes/Default/main.qml @@ -30,25 +30,27 @@ Item { onStageChanged: { if (stage == 1) { cauldron.opacity = 0.2 + letter1.opacity = 1 letter2.opacity = 1 + letter3.opacity = 1 + letter4.opacity = 1 + letter5.opacity = 1 + letter6.opacity = 1 bubble1.opacity = 0.2 } if (stage == 2) { cauldron.opacity = 0.4 - letter3.opacity = 1 bubble1.opacity = 0.4 bubble2.opacity = 0.4 } if (stage == 3) { cauldron.opacity = 0.6 - letter4.opacity = 1 bubble1.opacity = 0.6 bubble2.opacity = 0.6 bubble3.opacity = 0.6 } if (stage == 4) { cauldron.opacity = 0.8 - letter5.opacity = 1 bubble1.opacity = 0.8 bubble2.opacity = 0.8 bubble3.opacity = 0.8 @@ -56,7 +58,6 @@ Item { } if (stage == 5) { cauldron.opacity = 1 - letter6.opacity = 1 bubble1.opacity = 1 bubble2.opacity = 1 bubble3.opacity = 1 @@ -93,7 +94,7 @@ Item { source: "images/cauldron.png" opacity: 0 - Behavior on opacity { NumberAnimation { duration: 2000; alwaysRunToEnd: false; easing { type: Easing.InOutQuad } } } + Behavior on opacity { NumberAnimation { duration: 4000; alwaysRunToEnd: false; easing { type: Easing.InOutQuad } } } } Image { @@ -105,7 +106,8 @@ Item { source: "images/letter1.png" - opacity: 1 + opacity: 0 + Behavior on opacity { NumberAnimation { duration: 2000; alwaysRunToEnd: false; easing { type: Easing.InOutQuad } } } } Image { @@ -118,7 +120,7 @@ Item { source: "images/letter2.png" opacity: 0 - Behavior on opacity { NumberAnimation { duration: 2000; alwaysRunToEnd: false; easing { type: Easing.InOutQuad } } } + Behavior on opacity { NumberAnimation { duration: 4000; alwaysRunToEnd: false; easing { type: Easing.InOutQuad } } } } Image { @@ -131,7 +133,7 @@ Item { source: "images/letter3.png" opacity: 0 - Behavior on opacity { NumberAnimation { duration: 2000; alwaysRunToEnd: false; easing { type: Easing.InOutQuad } } } + Behavior on opacity { NumberAnimation { duration: 6000; alwaysRunToEnd: false; easing { type: Easing.InOutQuad } } } } Image { @@ -144,7 +146,7 @@ Item { source: "images/letter4.png" opacity: 0 - Behavior on opacity { NumberAnimation { duration: 2000; alwaysRunToEnd: false; easing { type: Easing.InOutQuad } } } + Behavior on opacity { NumberAnimation { duration: 8000; alwaysRunToEnd: false; easing { type: Easing.InOutQuad } } } } Image { @@ -157,7 +159,7 @@ Item { source: "images/letter5.png" opacity: 0 - Behavior on opacity { NumberAnimation { duration: 2000; alwaysRunToEnd: false; easing { type: Easing.InOutQuad } } } + Behavior on opacity { NumberAnimation { duration: 10000; alwaysRunToEnd: false; easing { type: Easing.InOutQuad } } } } Image { @@ -170,7 +172,7 @@ Item { source: "images/letter6.png" opacity: 0 - Behavior on opacity { NumberAnimation { duration: 2000; alwaysRunToEnd: false; easing { type: Easing.InOutQuad } } } + Behavior on opacity { NumberAnimation { duration: 12000; alwaysRunToEnd: false; easing { type: Easing.InOutQuad } } } } Image { -- cgit v1.2.1