Last post May 23, 2020 03:55 PM by BlazorFan
Member
12 Points
165 Posts
Apr 24, 2020 05:07 PM|issam1975|LINK
Hi everyone .
any idea on how to implement page navigation animation like this one
https://coreui.io/demo/3.1.0/
as you can see , it's a simple fade in /out animation
any idea is welcome .
thanks .
None
0 Points
3 Posts
May 23, 2020 03:55 PM|BlazorFan|LINK
there is a git package for this https://github.com/mikoskinen/Blazor.Animate
It is pretty simple to use, once you get the hang of it. Here is an example that was easily available. Just change the Animations.ZoomRight to whichever.
<Animate Animation="Animations.ZoomInRight" Duration="TimeSpan.FromSeconds(.35)" Easing="Easings.EaseOut" Once="true" Mirror="true"> <MyComponent/> </Animate>
Member
12 Points
165 Posts
pages navigation animation
Apr 24, 2020 05:07 PM|issam1975|LINK
Hi everyone .
any idea on how to implement page navigation animation like this one
https://coreui.io/demo/3.1.0/
as you can see , it's a simple fade in /out animation
any idea is welcome .
thanks .
None
0 Points
3 Posts
Re: pages navigation animation
May 23, 2020 03:55 PM|BlazorFan|LINK
there is a git package for this https://github.com/mikoskinen/Blazor.Animate
It is pretty simple to use, once you get the hang of it. Here is an example that was easily available. Just change the Animations.ZoomRight to whichever.