cordova inappbrowser适合屏幕上的图像(ios)

时间:2014-08-18 14:14:10

标签: ios cordova inappbrowser

是否有可能在cordova inapprowser的屏幕上显示图像?

如果我使用ref.executeScript将图像宽度设置为屏幕的100%,那么它的页面尺寸仍大于屏幕,我可以向左滚动

var ref = window.open(path, param, "location=no,suppressesIncrementalRendering=yes,enableViewportScale=yes");
     ref.addEventListener('loadstop', function() {
     ref.executeScript({ 
                 code: "var imageResize = document.querySelectorAll('img'); var screenWidth = window.innerWidth; for (var i = 0; i < imageResize.length; i++) {imageResize[i].style.width = screenWidth + 'px';}"  });
      });

0 个答案:

没有答案