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을로드하는 더 좋은 방법이 있습니까?
나는 이것 때문에 어떻게되는지 모르겠다.
복용량 복용량에 대해 의견이 있으십니까?