-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
31 lines (30 loc) · 871 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0,user-scalable=0">
<title>图片编辑器</title>
<style>
html, body {
width: 100%;
height: 100%;
margin: 0;
}
</style>
</head>
<body>
<img src="./src/assets/image/风景1.jpg" style="width: 10rem" onclick="usePED('./src/assets/image/风景1.jpg')">
<img src="./src/assets/image/风景2.jpg" style="width: 10rem" onclick="usePED('./src/assets/image/风景2.jpg')">
<img src="" id="showImg" style="width: 100%">
<script src="./dist/ped.js"></script>
<script>
var ped = null
function usePED(url) {
ped = new PED.imageInfo(url,saveFn)
}
function saveFn(data) {
document.getElementById('showImg').src = data
}
</script>
</body>
</html>