<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[PageLoader and effects]]></title><description><![CDATA[<p dir="auto">Is there a way to have an effect on lading page for example right to left?</p>
]]></description><link>https://forum.qt.io/topic/54847/pageloader-and-effects</link><generator>RSS for Node</generator><lastBuildDate>Thu, 23 Apr 2026 13:52:51 GMT</lastBuildDate><atom:link href="https://forum.qt.io/topic/54847.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 03 Jun 2015 05:31:56 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to PageLoader and effects on Wed, 03 Jun 2015 06:27:53 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mrdebug">@<bdi>mrdebug</bdi></a> Is this what you are trying to do ?</p>
<pre><code>import QtQuick 2.4

Item {
    width: 100
    height: 120

    Loader {
        id: loader
        anchors.fill: parent
        sourceComponent: component
    }

    Component {
        id: component
        Rectangle {
            id: rect
            width: parent.width
            height: parent.height
            color: "red"

            NumberAnimation {
                running: true
                target: rect
                from: -100
                to: 0
                property: "x"
                duration: 600
                easing.type: Easing.InOutQuad
            }
        }
    }
}
</code></pre>
]]></description><link>https://forum.qt.io/post/276498</link><guid isPermaLink="true">https://forum.qt.io/post/276498</guid><dc:creator><![CDATA[p3c0]]></dc:creator><pubDate>Wed, 03 Jun 2015 06:27:53 GMT</pubDate></item><item><title><![CDATA[Reply to PageLoader and effects on Wed, 03 Jun 2015 06:25:49 GMT]]></title><description><![CDATA[<p dir="auto">Have you got an example?</p>
]]></description><link>https://forum.qt.io/post/276497</link><guid isPermaLink="true">https://forum.qt.io/post/276497</guid><dc:creator><![CDATA[mrdebug]]></dc:creator><pubDate>Wed, 03 Jun 2015 06:25:49 GMT</pubDate></item><item><title><![CDATA[Reply to PageLoader and effects on Wed, 03 Jun 2015 06:17:44 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mrdebug">@<bdi>mrdebug</bdi></a> Ok. You can animate the Component which the <code>Loader</code> loads.</p>
]]></description><link>https://forum.qt.io/post/276496</link><guid isPermaLink="true">https://forum.qt.io/post/276496</guid><dc:creator><![CDATA[p3c0]]></dc:creator><pubDate>Wed, 03 Jun 2015 06:17:44 GMT</pubDate></item><item><title><![CDATA[Reply to PageLoader and effects on Wed, 03 Jun 2015 06:09:44 GMT]]></title><description><![CDATA[<p dir="auto">Sorry. I'm talking about the loader qml object.</p>
]]></description><link>https://forum.qt.io/post/276495</link><guid isPermaLink="true">https://forum.qt.io/post/276495</guid><dc:creator><![CDATA[mrdebug]]></dc:creator><pubDate>Wed, 03 Jun 2015 06:09:44 GMT</pubDate></item><item><title><![CDATA[Reply to PageLoader and effects on Wed, 03 Jun 2015 05:45:00 GMT]]></title><description><![CDATA[<p dir="auto">Hi <a class="plugin-mentions-user plugin-mentions-a" href="/user/mrdebug">@<bdi>mrdebug</bdi></a>,<br />
Which  PageLoader are you talking about ?</p>
]]></description><link>https://forum.qt.io/post/276492</link><guid isPermaLink="true">https://forum.qt.io/post/276492</guid><dc:creator><![CDATA[p3c0]]></dc:creator><pubDate>Wed, 03 Jun 2015 05:45:00 GMT</pubDate></item></channel></rss>