This example shows how to configure Telerik Window for ASP.NET MVC to animate when opening and closing. The supported animations are zoom, opacity and expand.

<%= Html.Telerik().Window()
        .Name("Window")
        .Effects(fx => fx
            .Zoom()
            .Opacity()
            .OpenDuration(200)
            .CloseDuration(300)
        )
        .Content("<p style='text-align: center'>Content</p>")
%>

Use the configurator to experiment with the animation settings.