I am in the process of creating a CSS stylesheet inspired by the Windows Fluent Design System, incorporating nearly all of its design elements. One particular feature of Fluent Design is its navigation transition effect:
void Page_ItemClick(object sender, ItemClickEventArgs e)
{
Frame.Navigate(typeof(Page), pageId, new DrillInNavigationTransitionInfo());
}
I am specifically interested in replicating the
DrillInNavigationTransitionInfo()
effect using CSS. How can I achieve this to make it as authentic as possible?