It appears that KendoUI Mobile has a number of view transitions which are not available in Kendo framework FX; I'm specifically looking at the the slide-right view transition.
The slide-right transition differs from the slide-in effect in that the slide-right animates the appearance of the new view (div) at the same time as it animates the disappearance of the old view (div). The new view slides in from the left, "pushing" the old view off to the right. In contrast, the slide-in effect slides in over (on top of) the old view.
Is there anyway to have an effect like the mobile slide-right transition when switching between two divs without affecting the entire visible page? I'm looking for something that would work similarly to the flip effect, i.e.:
<div id="container">
<div id="A"/>
<div id="B"/>
</div>
<script>
kendo.fx($("#container")).slideRight($("#A"), $("#B")).play();
</script>
so that div A would appear to slide-in, pushing div B off to the right. (Similarly, slide- left, up, and down effects would be useful.)
Back to the question: Is this possible now or is the material for the feedback pages?
Thanks.
The slide-right transition differs from the slide-in effect in that the slide-right animates the appearance of the new view (div) at the same time as it animates the disappearance of the old view (div). The new view slides in from the left, "pushing" the old view off to the right. In contrast, the slide-in effect slides in over (on top of) the old view.
Is there anyway to have an effect like the mobile slide-right transition when switching between two divs without affecting the entire visible page? I'm looking for something that would work similarly to the flip effect, i.e.:
<div id="container">
<div id="A"/>
<div id="B"/>
</div>
<script>
kendo.fx($("#container")).slideRight($("#A"), $("#B")).play();
</script>
so that div A would appear to slide-in, pushing div B off to the right. (Similarly, slide- left, up, and down effects would be useful.)
Back to the question: Is this possible now or is the material for the feedback pages?
Thanks.