OSDN Git Service

reverted theme
authorkokkiemouse <kokkiemouse@gmail.com>
Sun, 4 Oct 2020 22:22:08 +0000 (07:22 +0900)
committerkokkiemouse <kokkiemouse@gmail.com>
Sun, 4 Oct 2020 22:22:08 +0000 (07:22 +0900)
Signed-off-by: kokkiemouse <kokkiemouse@gmail.com>
channels/share/airootfs/usr/share/calamares/branding/serene/show.qml

index 9e02ba2..ab5db7b 100644 (file)
@@ -45,126 +45,5 @@ Presentation
             width: presentation.width
             horizontalAlignment: Text.Center
         }
-
-    SequentialAnimation{
-        SequentialAnimation{
-            ParallelAnimation {
-                YAnimator {
-                    target: imageleft
-                    from: imageleft.y
-                    to: imageleft.y * 4.8
-                    easing.type: Easing.OutExpo;
-                    duration: 300
-                }
-            }
-            ParallelAnimation {
-                YAnimator {
-                    target: imageleft;
-                    from: imageleft.y * 4.8
-                    to: imageleft.y
-                    easing.type: Easing.OutBounce;
-                    duration: 1000
-                }
-            }
-        }
-        PauseAnimation { duration: 1100 }
-        running: true
-        loops: Animation.Infinite
-    }
-    SequentialAnimation{
-        PauseAnimation { duration: 300 }
-        SequentialAnimation{
-            ParallelAnimation {
-                YAnimator {
-                    target: imagecenter
-                    from: imageleft.y
-                    to: imageleft.y * 4.8
-                    easing.type: Easing.OutExpo;
-                    duration: 300
-                }
-            }
-            ParallelAnimation {
-                YAnimator {
-                    target: imagecenter;
-                    from: imageleft.y * 4.8
-                    to: imageleft.y
-                    easing.type: Easing.OutBounce;
-                    duration: 1000
-                }
-            }
-        }
-        PauseAnimation { duration: 800 }
-        running: true
-        loops: Animation.Infinite
-    }
-    SequentialAnimation{
-        PauseAnimation { duration: 600 }
-        SequentialAnimation{
-            ParallelAnimation {
-                YAnimator {
-                    target: imageright
-                    from: imageleft.y
-                    to: imageleft.y * 4.8
-                    easing.type: Easing.OutExpo;
-                    duration: 300
-                }
-            }
-            ParallelAnimation {
-                YAnimator {
-                    target: imageright;
-                    from: imageleft.y * 4.8
-                    to: imageleft.y
-                    easing.type: Easing.OutBounce;
-                    duration: 1000
-                }
-            }
-        }
-        PauseAnimation { duration: 500 }
-        running: true
-        loops: Animation.Infinite
-    }
-    Rectangle {
-        id: rectangle
-
-        anchors.horizontalCenter: background.horizontalCenter
-        anchors.top: textkun.bottom
-        color: "#ffffff"
-        anchors.topMargin: 28
-        width: textkun.width
-        Image {
-            id: imageleft
-            anchors.right: imagecenter.left
-            height: textkun.height / 3
-            width:textkun.height / 3
-            source: "circle.svg"
-            anchors.topMargin: 28
-            anchors.rightMargin: 9
-            anchors.leftMargin: 16
-            y:imagecenter.y
-
-            fillMode: Image.PreserveAspectFit
-        }
-        Image {
-            id: imagecenter
-            height: textkun.height / 3
-            width:textkun.height / 3
-            source: "circle.svg"
-            anchors.topMargin: 28
-            anchors.leftMargin: 9
-            anchors.centerIn: rectangle
-            fillMode: Image.PreserveAspectFit
-        }
-        Image {
-            id: imageright
-            anchors.left: imagecenter.right
-            height: imagecenter.height
-            source: "circle.svg"
-            y:imagecenter.y
-            anchors.topMargin: 28
-
-            anchors.leftMargin: 9
-            fillMode: Image.PreserveAspectFit
-        }
-    }
     }
 }