-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmobilepreview.html
53 lines (45 loc) · 1.26 KB
/
mobilepreview.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
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>预览</title>
<link rel="stylesheet" href="./mobilepreview.css">
<script src="./image.js"></script>
<script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.slim.js"></script>
</head>
<body>
<div class="device device-fixed">
<div class="device-content">
<div id="iwindow">
<div class="container" contenteditable="false">
<div class="imgDiv">
<img id='coverphoto' src="" alt="">
</div>
<div class="title"></div>
<div class="article">
<p class="hello"> </p>
</div>
</div>
</div>
</div>
</div>
<!-- <div class="publish">保存网页</div> -->
</body>
<style>
</style>
<script>
$(document).ready(function () {
preview();
});
</script>
<style>
.publish{
position: absolute;
right: 50px;
top:50px;
cursor: pointer;
}
</style>
</html>