This is a migrated thread and some comments may be shown as answers.

Animation as in the demo

3 Answers 66 Views
Animation
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Matt
Top achievements
Rank 1
Matt asked on 20 Mar 2012, 06:15 PM
Hi,
I am trying to figure out which animation style (/ propoerties) are used for list of examples in the Telerik demo app that comes with the download. When one presses on an item in the list the other options animate out of the way randomly and the click option transitions last.

Is there an example that does exactly that?

-matt

3 Answers, 1 is accepted

Sort by
0
Kiril Stanoev
Telerik team
answered on 21 Mar 2012, 10:07 AM
Hi Matt,

Thank you for contacting us. In our demos, we are using RadPhoneApplicationFrame and the transition it is using internally is RadTileTransition. Give it a try and let me know how it works for you. If you have additional questions, don't hesitate to contact us.

All the best,
Kiril Stanoev
the Telerik team
Sharpen your .NET Ninja skills! Attend Q1 webinar week and get a chance to win a license! Book your seat now >>
0
Matt
Top achievements
Rank 1
answered on 21 Mar 2012, 03:17 PM
Thanks Kiril,
I will give that a try.

-matt
0
Vijay
Top achievements
Rank 1
answered on 04 Jun 2012, 07:07 PM
Hi Matt,

Please find the below sample code to animate with telerik Apps.

                RadMoveAnimation obj_Animation = new RadMoveAnimation();
            obj_Animation.AutoReverse = true;
            obj_Animation.Duration = TimeSpan.FromSeconds(5);
            obj_Animation.StartPoint = new Point(-120, -130);
            obj_Animation.EndPoint = new Point(80, 80);
            obj_Animation.FillBehavior = AnimationFillBehavior.HoldEnd;
            // obj_Animation.MoveDirection = MoveDirection.BottomOut;
            RadAnimationManager.Play(a, obj_Animation);
        }

X Angle based movement:

                RadMoveXAnimation obj_Animation = new RadMoveXAnimation();
            obj_Animation.StartX = -465.32;
            obj_Animation.EndX = 400.22;
            obj_Animation.AutoReverse = true;
            obj_Animation.Duration = TimeSpan.FromSeconds(5);
            RadAnimationManager.Play(a, obj_Animation);

Thanks and Regards,
Vijay
Tags
Animation
Asked by
Matt
Top achievements
Rank 1
Answers by
Kiril Stanoev
Telerik team
Matt
Top achievements
Rank 1
Vijay
Top achievements
Rank 1
Share this question
or