MetaViewport
in namespace DotVVM.Framework.Controls.Bootstrap
Renders the HTML meta viewport element.
Usage & Scenarios
Renders the HTML <meta name="viewport" ... /> element.
This element ensures proper rendering and touch zooming on mobile devices.
See details on https://getbootstrap.com/docs/3.3/css/#overview-mobile.
Sample 1: MetaViewport
Place the control inside the head element. It uses bootstrap api to control zooming and presentation on mobile devices.
The MetaViewport control has the Width property which sets the width of the page.
The InitialScale property is used to set initial zoom level which is applied when the page is first loaded.
The MaximumScale property defines maximum zoom level the user can set.
It is also possible to disable zooming at all with the IsUserScalable property.
<!-- Default meta viewport -->
<bs:MetaViewport/>
<!-- Custom meta viewport -->
<bs:MetaViewport Width="320" InitialScale="2" MaximumScale="4" />
<!-- Meta viewport with disabled user scaling -->
<bs:MetaViewport IsUserScalable="false" />Properties
| Name | Type | Description | Notes | Default Value | |
|---|---|---|---|---|---|
|  | Attributes | Dictionary<String,Object> | attribute static value | null | |
|  | ClientIDMode | ClientIDMode | Gets or sets the client ID generation algorithm. | attribute static value | Static | 
|  | DataContext | Object | Gets or sets a data context for the control and its children. All value and command bindings are evaluated in context of this value. | attribute static value bindable | null | 
|  | ID | String | Gets or sets the unique control ID. | attribute static value bindable | null | 
|  | IncludeInPage | Boolean | Gets or sets whether the control is included in the DOM of the page. | attribute bindable | True | 
|  | InitialScale | String | Gets or sets the initial-scale parameter value(initial zoom level). | attribute static value | 1 | 
|  | InnerText | String | Gets or sets the inner text of the HTML element. | attribute static value bindable | null | 
|  | IsUserScalable | Boolean | Gets or sets the user-scalable parameter value which controls if user can zoom in on mobile device. | attribute static value | True | 
|  | MaximumScale | String | Gets or sets the maximum-scale parameter value. | attribute static value | null | 
|  | Visible | Boolean | Gets or sets whether the control is visible. | attribute bindable | True | 
|  | Width | String | Gets or sets the width parameter value with default set to use width of mobile device(device-width). | attribute static value | device-width |