方向改变不起作用

时间:2016-02-01 18:11:06

标签: javascript device-orientation

当我旋转设备时,我试图获取图像的大小和位置,但它总是显示相同的。

$(window).bind('orientationchange', function(evt) {
    var height = $('#imgg').height();
    var width = $('#imgg').width();
    alert(height);
    alert(width);
    var position = $('#imgg').position();

    alert('left: ' + position.left + ', top: ' + position.top);

});

0 个答案:

没有答案