博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Adapting to views using css or js
阅读量:5925 次
发布时间:2019-06-19

本文共 1158 字,大约阅读时间需要 3 分钟。

using css

@media screen and (-ms-view-state: fullscreen-landscape) {}@media screen and (-ms-view-state: fullscreen-portrait) {}@media screen and (-ms-view-state: filled) {}@media screen and (-ms-view-state: snapped) {}

 

using js:

(function () {    "use strict";    var app = WinJS.Application;    var view = Windows.UI.ViewManagement;    app.onactivated = function (eventObject) {        var value = getMessageFromView(view.ApplicationView.value);    };    function getMessageFromView(currentView) {        var displayMsg;        switch (currentView) {            case view.ApplicationViewState.filled:                displayMsg = "Filled View";                break;            case view.ApplicationViewState.snapped:                displayMsg = "Snapped View";                break;            case view.ApplicationViewState.fullScreenLandscape:                displayMsg = "Full - Landscape";                break;            case view.ApplicationViewState.fullScreenPortrait:                displayMsg = "Full - Portrait";                break;        }        return displayMsg;    }    app.start();})();

 

转载于:https://www.cnblogs.com/Mr-Joe/p/3193259.html

你可能感兴趣的文章
LINQ之路12:LINQ Operators之数据转换(Projecting)
查看>>
OpenGL ES for Windows Mobile
查看>>
centos 6.8操作系统安装arcgis server 10.4
查看>>
Raspberrypi安装使用开发简要说明
查看>>
(step8.2.4)hdu 1846(Brave Game——巴什博奕)
查看>>
oracle11g rac asm 实例内存修改
查看>>
SQL Server:数据库角色
查看>>
多标签主界面使用TRzPageControl
查看>>
对技术的态度—CoolShell 陈皓
查看>>
佛家十大经典禅语
查看>>
DinnerNow案例分析
查看>>
Web Farm和Web Garden的区别
查看>>
STL - 迭代器 - 安插型迭代器
查看>>
IIs7 报错
查看>>
POJ 1739 Tony's Tour(插头DP)
查看>>
设计模式
查看>>
科学版欲望都市:爱与性的实验报告
查看>>
一些程序的整理
查看>>
WinXp共享
查看>>
Asp.Net编码
查看>>