-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsvg.html
30 lines (29 loc) · 980 Bytes
/
svg.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>下拉刷新</title>
<style type="text/css">
*{-webkit-text-size-adjust:none;}
html{height:100%;}
body{overflow:hidden;margin:0 auto;padding:0;max-width:640px;height:100%;font-size:16px;}
.svgBox{position:relative;padding:none;width: 100px;height:300px;margin: 20px auto;overflow: visible;}
#svg{width:200px;height:600px;zoom:0.5;}
.cr{position: absolute;bottom: 0px;padding: 0px 3%;}
</style>
</head>
<body>
<div>
<div id="svgBox" class="svgBox">
<svg id="svg"></svg>
</div>
</div>
<div class="cr">
<p>项目地址:<a href="">github</a></p>
<p>更多教程请访问:<a href="http://ued.sexy">ued.sexy</a></p>
</div>
<script type="text/javascript" src="js/drop.svg.js"></script>
<script type="text/javascript" src="js/index.svg.js"></script>
</body>
</html>