-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathes5.html
50 lines (40 loc) · 953 Bytes
/
es5.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
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Hello React!</title>
<script src="./common/js/ajax.js"></script>
<!--官方提供的 CDN 地址:-->
<!-- <script src="./common/js/react.development.v16.12.0.js"></script>
<script src="./common/js/react-dom.development.v16.12.0.js"></script> -->
<!-- <script src="./common/js/browser-polyfill.5.8.38.js"></script> -->
<script src="./common/js/react.v16.12.0.js"></script>
<script src="./common/js/browser.5.8.38.js"></script>
</head>
<style>
.lsft-box {
float: left;
width: 48%;
height: 100vh;
}
.right-box {
float: right;
width: 48%;
height: 100vh;
}
* {
padding: 0;
margin: 0;
}
.textarea {
font-size: 18px;
display: block;
/* width: 100%;
height: 100vh; */
}
</style>
<body>
<div id="example" class="lsft-box"></div>
<script src="./es5_code/es5_react_code/01/01.js"></script>
</body>
</html>