I'm building an image viewer in a Windows 8 WinJS Application. When you click a thumb it loads a larger version of it in a placeholder on the page. It also has a video viewer in a x-ms-webview control.

Ideally what I would like to do is use something akin to the requestFullScreen() JS method to launch the larger version of the image in fullscreen mode. (I've tried requestFullScreen but it doesn't work).

I would also like to do a similar thing for the -x-ms-webview control where by the video inside can become full screen.

Are any of these things actually possible? Or should I resign myself to positioning them absolutely on the page?

Many thanks for your time.

Chris

有帮助吗?

解决方案

Add a class with JavaScript of fullscreen, set properties position: absolute, top: 0, left: 0, width: 100vw, height: 100vh.

That should make it full screen.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top