我已经看到了很多关于此的问题,但是没有关于如何在使用DefaultDisplayMode类确定移动网站的Razor / MVC网站中执行此操作的明确答案。此外,很多答案只是代码片段,没有代码所在的详细信息(在控制器,视图,CSS等中?)
首先,有一个调用EvaluateDisplayMode()的全局文件:
的Global.asax.cs
public class MvcApplication : System.Web.HttpApplication
{
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
BundleConfig.RegisterBundles(BundleTable.Bundles);
WebApiConfig.Register(GlobalConfiguration.Configuration);
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
RouteConfig.RegisterRoutes(RouteTable.Routes);
DeviceConfig.EvaluateDisplayMode();
}
}
App_Start文件夹中的EvaluateDisplayMode根据GetOverriddenUserAgent()类型设置移动和桌面类:
DeviceConfig.cs
public static class DeviceConfig
{
const string DeviceTypePhone = "Mobile";
public static void EvaluateDisplayMode()
{
DisplayModeProvider.Instance.Modes.Insert(0,
new DefaultDisplayMode(DeviceTypePhone)
{
ContextCondition = (ctx => (
(ctx.GetOverriddenUserAgent() != null) &&
(
(ctx.GetOverriddenUserAgent().IndexOf("android", StringComparison.OrdinalIgnoreCase) >= 0) ||
(ctx.GetOverriddenUserAgent().IndexOf("iPhone", StringComparison.OrdinalIgnoreCase) >= 0) ||
(ctx.GetOverriddenUserAgent().IndexOf("Window Phone", StringComparison.OrdinalIgnoreCase) >= 0) ||
(ctx.GetOverriddenUserAgent().IndexOf("Blackberry", StringComparison.OrdinalIgnoreCase) >= 0)
)
))
});
}
}
每个页面都有一个名为_AdminMaster.Mobile.cshtml的Layout / Master页面,它使用名为PhoneCommon.css的CSS文件。 CSS没有什么特别之处(移动与桌面;没有媒体查询;我没有正确的CSS,我从客户端使用的另一个开发人员那里继承了它),除了高度没有一直延伸到底部页。这是CSS的一部分(相当冗长):
#main #content {
float:left;
display:block;
width:100%;
margin:0 auto;
position: relative;
top:7px;
left:0;
border:1px solid #000;
box-shadow:0 0 0 1px #464646;
-webkit-box-shadow:0 0 0 1px #464646;
-moz-box-shadow:0 0 0 1px #464646;
background:url(../images/login_bg.png) repeat top center;
border-radius:5px;
-webkit-border-radius:5px;
-moz-border-radius:5px;
position:relative;
min-height:300px; padding-bottom:30px;
}
最佳答案似乎来自@uʍopǝpısdn:
,但它不起作用。我把旋转代码放在PhoneCommon.css中。它的作用是强制页面进入左上角而不旋转它。
以下是我看过的其他一些网站,但没有一个显示完整的答案。有人可以告诉我如何让我的网站强制在移动设备上横向移动吗?感谢。
Foundation: Force landscape mode on mobile devices
Force tablet to be in landscape mode
Is it possible to prevent iPhone/iPad orientation changing in the browser?
http://www.w3.org/TR/2004/CR-css-print-20040225/#section-properties
Is there a way to force horizontal / landscape layout on mobile devices?
答案 0 :(得分:7)
简短的回答,您无法通过网站控制用户的操作系统行为。
您可以使用以下问题的答案显示警告: forcing web-site to show in landscape mode only
或者您可以使用以下代码(取自http://www.quora.com/Can-I-use-Javascript-to-force-a-mobile-browser-to-stay-in-portrait-or-landscape-mode)强制您的布局在纵向模式下看起来像风景:
@media screen and (orientation:landscape) {
#container {
-ms-transform: rotate(-90deg); /* IE 9 */
-webkit-transform: rotate(-90deg); /* Chrome, Safari, Opera */
transform: rotate(-90deg);
width: /* screen width */ ;
height: /* screen height */ ;
overflow: scroll;
}
}
正如第二个网站建议的那样,您应该尝试让您的网站看起来不错,但是用户希望查看它。
答案 1 :(得分:0)
尝试使用它:
/* Landscape */
@media only screen
and (min-device-width: 320px)
and (max-device-width: 480px)
and (-webkit-min-device-pixel-ratio: 2)
and (orientation: landscape) {
}