The viewport
dimensions can be gathered via the window
object:
var viewport = {
width : $(window).width(),
height : $(window).height()
};
//can access dimensions like this:
//viewport.height
Though you won't always get perfect results, different devices behave differently and this gives the viewport
dimensions, not the screen dimensions.
Alternatively you could check the width of a data-role="page"
element to find the device-width
(since it's set to 100%
of the device-width
):
var deviceWidth = 0;
$(window).bind('resize', function () {
deviceWidth = $('[data-role="page"]').first().width();
}).trigger('resize');???
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…