-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
28 lines (28 loc) · 1012 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
<!DOCTYPE html">
<html>
<head>
<meta charset="utf-8" />
<title>iOS Slice Resizer</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div class="container">
<header class="head">
<h1>iOS Slice Resizer</h1>
</header>
<section class="content" id="dropbox">
<form action="upload.php" method="POST" enctype="multipart/form-data" id="form">
<p>拖放原图,或 <input type="file" name="photo[]" id="file" accept="image/png" multiple /> <button type="submit" class="hide">Upload</button></p>
<p>将自动生成并打包相应的 @2x 和 @1x 的切图。</p>
<div id="temp">
</div>
</form>
</section>
<footer class="foot">
<p>Coded by <a href="http://netputer.me/">NetPuter</a> / Fork me on <a href="https://github.com/netputer/slice">GitHub</a>.</p>
</footer>
</div>
<script type="text/javascript" src="http://lib.sinaapp.com/js/jquery/1.8/jquery.min.js" ></script>
<script type="text/javascript" src="script.js" ></script>
</body>
</html>