forked from qiangck/weex-ide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtml5.html
46 lines (45 loc) · 1.16 KB
/
html5.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Weex HTML5</title>
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="apple-touch-fullscreen" content="yes" />
<meta name="format-detection" content="telephone=no, email=no" />
<style>
html, body, #weex {
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<div id="weex"></div>
</body>
<script src="html5.js"></script>
<script>
/**
* Init weex instance depending on the url params.
* There are three ways to load weex bundles, depends on the
* parameter 'loader' in the url:
*
* + xhr: use XMLHttpRequest. Parameter 'page' should be
* the bundle's url.
* + source: use the transformed code itself. 'page' should
* be the transformed weex bundle.
*
* @param {String} bundle - It has different meaning depends on
* the type of loader.
*/
const path = require('path');
const fs = require('fs');
const bundleSrc = fs.readFileSync(path.join(__dirname, 'bundles', 'code.js'), 'utf-8');
window.weex.init({
appId: 'code',
loader: 'source',
source: bundleSrc,
rootId: 'weex'
})
</script>
</html>