2017-04-06 3 views
0

개발중인 응용 프로그램에서 비디오의 첫 번째 프레임을 표시하려면 iframe을 사용해야합니다. 나의 전체 웹보기를 차지Appcelerator 응용 프로그램에 iframe 추가

<html> 
    <body> 
     <iframe width="100" height="100" src="https:(myLink) frameborder="0"></iframe> 
    </body> 
</html> 

문제는 그 프레임로드하지만 수행

나는 이런 내 웹보기가 있습니다

var myWebView = Ti.UI.createWebView({ 
    height : deviceHeight * 0.04, 
    width : deviceHeight * 0.04, 
    left : deviceWidth * 0.03, 
    backgroundColor : "red", 
    url : "/local.html", 
}); 

을이 내 local.html입니다.

JavaScript가있는 appcelerator의 WebView에 iframe을로드하는 더 좋은 방법이 있습니까?

나는 이것 때문에 어떻게되는지 모르겠다.

복용량 복용량에 대해 의견이 있으십니까?

답변

3

주위에 iframe이 정말로 필요합니까? 귀하의 링크에 URL을 설정하는 것도 효과가 있습니다.

한 가지 방법은 메타 뷰포트 설정하는 것입니다 : https://www.w3schools.com/css/css_rwd_viewport.asp

<meta name="viewport" content="width=device-width, initial-scale=1.0"> 

및 iframe을가 전체 화면 할 필요가있는 경우 (100 픽셀되지 않음)이 될 것 같은 뭔가 :

<body style="margin:0px;padding:0px;overflow:hidden"> 
    <iframe src="http://www.youraddress.com" frameborder="0" style="overflow:hidden;height:100%;width:100%" height="100%" width="100%"></iframe> 
</body>