blob: 06fd3e56d60812cb9786b3a9175445a7c066410b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
//
// UniWebViewTransitionEdge.cs
// Created by Wang Wei(@onevcat) on 2015-11-16.
//
/// <summary>
/// Transition edges of webview. You can specify an edge in Show() or Hide() methods of web view.
/// </summary>
public enum UniWebViewTransitionEdge
{
/// <summary>
/// No transition when showing or hiding.
/// </summary>
None = 0,
/// <summary>
/// Transit the web view from/to top.
/// </summary>
Top,
/// <summary>
/// Transit the web view from/to left.
/// </summary>
Left,
/// <summary>
/// Transit the web view from/to bottom.
/// </summary>
Bottom,
/// <summary>
/// Transit the web view from/to right.
/// </summary>
Right
}
|