demo.html 295 Bytes
<div id="iframe" class="page out" data-title="Iframe插件">
	<div id="iframe-a"></div>
</div>
<script>
require(["Iframe"], function(Iframe) {
	new Iframe({
		el: "iframe-a",
		option: {
			url : "http://weaver.com.cn/mobile/ecology/index.html",
			width : "100%"
		}
	}).render();
});
</script>